From 307fd34ba8b19a36ddfe70eb6c70e5386ed99b34 Mon Sep 17 00:00:00 2001 From: Jan Eilers Date: Tue, 23 Jun 2020 14:16:04 +0100 Subject: 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 Change-Id: I0098e490e8597a9bae4781cacba8e19f8a50d1f0 --- cmake/GlobalConfig.cmake | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'cmake') 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) -- cgit v1.2.1