aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFrancis Murtagh <francis.murtagh@arm.com>2019-12-19 11:35:55 +0000
committerFrancis Murtagh <francis.murtagh@arm.com>2019-12-19 11:35:55 +0000
commitf8ac829a7fc5b049a2ef44552908c67c3ec952d7 (patch)
treeb84cb54b2bd578adbc84dd01020a666cfc0ac605
parent93cbbcc762769b15dc5474ddda14329bb458fa86 (diff)
downloadarmnn-f8ac829a7fc5b049a2ef44552908c67c3ec952d7.tar.gz
IVGCVSW-4237 Solve build dependencies to allow isolated build on sbuild
* Remove FindBoost search for libboost-log which caused unnecessary dependency. Signed-off-by: Francis Murtagh <francis.murtagh@arm.com> Change-Id: I58e30ca8ca76106ef08ddc782c462e96ddb211cf
-rw-r--r--cmake/GlobalConfig.cmake2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmake/GlobalConfig.cmake b/cmake/GlobalConfig.cmake
index 51a7efd675..dd932d54bb 100644
--- a/cmake/GlobalConfig.cmake
+++ b/cmake/GlobalConfig.cmake
@@ -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})