Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Boost.test must be >= v1.59 to be useful to us
authorMartin Quinson <martin.quinson@loria.fr>
Wed, 4 Jul 2018 13:14:51 +0000 (15:14 +0200)
committerMartin Quinson <martin.quinson@loria.fr>
Wed, 4 Jul 2018 13:14:51 +0000 (15:14 +0200)
CMakeLists.txt

index ca7a1da..29c931b 100644 (file)
@@ -257,11 +257,11 @@ if(enable_smpi_papi)
 endif()
 
 # Not finding this is perfectly OK
 endif()
 
 # Not finding this is perfectly OK
-find_package(Boost COMPONENTS unit_test_framework)
+find_package(Boost 1.59 COMPONENTS unit_test_framework)
 if (Boost_UNIT_TEST_FRAMEWORK_FOUND)
   message(STATUS "Enabling the Boost-based unit tests.")
 else()
 if (Boost_UNIT_TEST_FRAMEWORK_FOUND)
   message(STATUS "Enabling the Boost-based unit tests.")
 else()
-  message(STATUS "Disabling the Boost-based unit tests -- please install libboost-test-dev.")
+  message(STATUS "Disabling the Boost-based unit tests -- please install libboost-test-dev (>= v1.59).")
 endif()
 
 
 endif()