From 06f7982ebb421da17b69487f2dbbef4ad2f9d7f4 Mon Sep 17 00:00:00 2001 From: Matthias Maier Date: Wed, 10 Apr 2013 07:58:05 +0000 Subject: [PATCH] CMake: Bugfix: Export Boost_INCLUDE_DIRS to the user as well git-svn-id: https://svn.dealii.org/trunk@29235 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/cmake/configure/configure_boost.cmake | 3 +++ 1 file changed, 3 insertions(+) diff --git a/deal.II/cmake/configure/configure_boost.cmake b/deal.II/cmake/configure/configure_boost.cmake index 67d90ff848..8e28bf83e5 100644 --- a/deal.II/cmake/configure/configure_boost.cmake +++ b/deal.II/cmake/configure/configure_boost.cmake @@ -57,6 +57,9 @@ ENDMACRO() MACRO(FEATURE_BOOST_CONFIGURE_EXTERNAL) INCLUDE_DIRECTORIES (${Boost_INCLUDE_DIRS}) + # The user has to know the location of the boost headers as well: + LIST(APPEND DEAL_II_USER_INCLUDE_DIRS ${Boost_INCLUDE_DIRS}) + # # Remove "pthread" from Boost_LIBRARIES. Threading, if necessary, is # already set up via configure_1_threads.cmake. -- 2.39.5