From 2b1e01799152ad5b969b20c712c2eb0676866a88 Mon Sep 17 00:00:00 2001 From: Martin Quinson Date: Wed, 4 Jul 2018 15:14:51 +0200 Subject: [PATCH] Boost.test must be >= v1.59 to be useful to us --- CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ca7a1da578..29c931bd05 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -257,11 +257,11 @@ if(enable_smpi_papi) 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() - 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() -- 2.20.1