From dec9b2096eacf943a4916416df2ca4b6fdc87b00 Mon Sep 17 00:00:00 2001 From: Noel Eck Date: Thu, 30 Jun 2016 15:15:50 -0700 Subject: [PATCH] mraa: Updated mraa dependecy to 1.1.1 There were api changes for iio kernel support on mraa which cascade to UPM - setting the minimum version of mraa required. Signed-off-by: Noel Eck --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 48c17180..e8fb1d8f 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -10,7 +10,7 @@ find_package (PkgConfig REQUIRED) # Force a libmraa search and minimum required version every time a config is generated unset(MRAA_FOUND CACHE) -pkg_check_modules (MRAA REQUIRED mraa>=1.0.0) +pkg_check_modules (MRAA REQUIRED mraa>=1.1.1) message (INFO " found mraa version: ${MRAA_VERSION}") # Appends the cmake/modules path to MAKE_MODULE_PATH variable.