summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVincent Rouvreau <10407034+VincentRouvreau@users.noreply.github.com>2022-01-13 07:38:06 +0100
committerGitHub <noreply@github.com>2022-01-13 07:38:06 +0100
commitc8a02b48f3d3e5c5c74859be7dd2c347f2dabcbd (patch)
tree50d28eaf30dae83a63e7f2ca308753b7b9f67c3b
parentce15558c95c2719d0d0c37e5818b4e1462eb858d (diff)
parent01adfb0b0eb8124adc18d9bb5cd97aa83b74eeb5 (diff)
Merge pull request #568 from VincentRouvreau/custom_boost_installation
Fix custom boost installation
-rw-r--r--src/cmake/modules/GUDHI_third_party_libraries.cmake1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/cmake/modules/GUDHI_third_party_libraries.cmake b/src/cmake/modules/GUDHI_third_party_libraries.cmake
index 023061f1..21c9d47b 100644
--- a/src/cmake/modules/GUDHI_third_party_libraries.cmake
+++ b/src/cmake/modules/GUDHI_third_party_libraries.cmake
@@ -6,6 +6,7 @@ find_package(Boost 1.56.0 QUIET OPTIONAL_COMPONENTS filesystem unit_test_framewo
if(NOT Boost_VERSION)
message(FATAL_ERROR "NOTICE: This program requires Boost and will not be compiled.")
endif(NOT Boost_VERSION)
+include_directories(${Boost_INCLUDE_DIRS})
find_package(GMP)
if(GMP_FOUND)