IVGCVSW-4237 Solve build dependencies to allow isolated build on sbuild
authorFrancis Murtagh <francis.murtagh@arm.com>
Thu, 19 Dec 2019 11:35:55 +0000 (11:35 +0000)
committerFrancis Murtagh <francis.murtagh@arm.com>
Thu, 19 Dec 2019 11:35:55 +0000 (11:35 +0000)
 * Remove FindBoost search for libboost-log which caused unnecessary dependency.

Signed-off-by: Francis Murtagh <francis.murtagh@arm.com>
Change-Id: I58e30ca8ca76106ef08ddc782c462e96ddb211cf

cmake/GlobalConfig.cmake

index 51a7efd..dd932d5 100644 (file)
@@ -116,7 +116,7 @@ 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 system filesystem log program_options)
+find_package(Boost 1.59 REQUIRED COMPONENTS unit_test_framework system filesystem program_options)
 include_directories(SYSTEM "${Boost_INCLUDE_DIRS}")
 link_directories(${Boost_LIBRARY_DIRS})