From: Matthew Bentham Date: Fri, 13 Nov 2020 12:04:01 +0000 (+0000) Subject: Wrap FindBoost in if(BUILD_UNIT_TESTS) so that it can be excluded entirely X-Git-Tag: submit/tizen/20210421.062230~206 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e688d611acf8efec5e2c79db0654d28d44d82a77;p=platform%2Fupstream%2Farmnn.git Wrap FindBoost in if(BUILD_UNIT_TESTS) so that it can be excluded entirely Signed-off-by: Matthew Bentham Change-Id: Iabe1b10e53d393a19e681156c001d6a2e9eb835e --- diff --git a/cmake/GlobalConfig.cmake b/cmake/GlobalConfig.cmake index 01ce91f..360f068 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)