From e688d611acf8efec5e2c79db0654d28d44d82a77 Mon Sep 17 00:00:00 2001 From: Matthew Bentham Date: Fri, 13 Nov 2020 12:04:01 +0000 Subject: Wrap FindBoost in if(BUILD_UNIT_TESTS) so that it can be excluded entirely Signed-off-by: Matthew Bentham Change-Id: Iabe1b10e53d393a19e681156c001d6a2e9eb835e --- cmake/GlobalConfig.cmake | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/cmake/GlobalConfig.cmake b/cmake/GlobalConfig.cmake index 01ce91fc52..360f06860e 100644 --- a/cmake/GlobalConfig.cmake +++ b/cmake/GlobalConfig.cmake @@ -134,10 +134,12 @@ if (NOT BUILD_PIPE_ONLY) else() set(Boost_USE_STATIC_LIBS ON) endif() - add_definitions("-DBOOST_ALL_NO_LIB") # Turn off auto-linking as we specify the libs manually - find_package(Boost 1.59 REQUIRED COMPONENTS unit_test_framework) - include_directories(SYSTEM "${Boost_INCLUDE_DIRS}") - link_directories(${Boost_LIBRARY_DIRS}) + if (BUILD_UNIT_TESTS) + add_definitions("-DBOOST_ALL_NO_LIB") # Turn off auto-linking as we specify the libs manually + find_package(Boost 1.59 REQUIRED COMPONENTS unit_test_framework) + include_directories(SYSTEM "${Boost_INCLUDE_DIRS}") + link_directories(${Boost_LIBRARY_DIRS}) + endif() endif() if (NOT BUILD_PIPE_ONLY) -- cgit v1.2.1