aboutsummaryrefslogtreecommitdiff
path: root/cmake
diff options
context:
space:
mode:
authorJan Eilers <jan.eilers@arm.com>2020-06-23 14:16:04 +0100
committerJan Eilers <jan.eilers@arm.com>2020-06-24 10:06:28 +0100
commit307fd34ba8b19a36ddfe70eb6c70e5386ed99b34 (patch)
tree1989b029eb5711c32d8b6d95ec6f778175e89419 /cmake
parenta792a05ba521c426462eb050f96a98b1ad156c58 (diff)
downloadarmnn-307fd34ba8b19a36ddfe70eb6c70e5386ed99b34.tar.gz
IVGCVSW-4487 Adds ghc::filesystem to third-party
* as replacement for boost::filesystem * added to cmake * added to TPIP in readme.md Signed-off-by: Jan Eilers <jan.eilers@arm.com> Change-Id: I0098e490e8597a9bae4781cacba8e19f8a50d1f0
Diffstat (limited to 'cmake')
-rw-r--r--cmake/GlobalConfig.cmake4
1 files changed, 4 insertions, 0 deletions
diff --git a/cmake/GlobalConfig.cmake b/cmake/GlobalConfig.cmake
index 9cf825e1ce..3e0f0fe330 100644
--- a/cmake/GlobalConfig.cmake
+++ b/cmake/GlobalConfig.cmake
@@ -135,6 +135,10 @@ link_directories(${Boost_LIBRARY_DIRS})
find_path(CXXOPTS_INCLUDE cxxopts/cxxopts.hpp PATHS third-party)
include_directories(SYSTEM "${CXXOPTS_INCLUDE}")
+# ghc (Alternative to boost::filesystem)
+find_path(GHC_INCLUDE ghc/filesystem.hpp PATHS third-party)
+include_directories(SYSTEM "${GHC_INCLUDE}")
+
# pthread
find_package (Threads)