From: Matthias Maier Date: Wed, 10 Apr 2013 07:58:05 +0000 (+0000) Subject: CMake: Bugfix: Export Boost_INCLUDE_DIRS to the user as well X-Git-Tag: v8.0.0~743 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=06f7982ebb421da17b69487f2dbbef4ad2f9d7f4;p=dealii.git 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 --- 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.