From: Timo Heister Date: Sun, 23 Apr 2017 21:29:41 +0000 (-0400) Subject: Install muparser headers X-Git-Tag: v9.0.0-rc1~1661^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a66390feee938329cf0553c95ce52672719f9c03;p=dealii.git Install muparser headers This fixes compilation error introduced by #4285 (muparser.h now needs to be accessible for user projects). --- diff --git a/bundled/CMakeLists.txt b/bundled/CMakeLists.txt index acc7f66f26..915faf0afb 100644 --- a/bundled/CMakeLists.txt +++ b/bundled/CMakeLists.txt @@ -64,6 +64,12 @@ ENDIF() IF(FEATURE_MUPARSER_BUNDLED_CONFIGURED) ADD_SUBDIRECTORY(${MUPARSER_FOLDER}) + INSTALL(DIRECTORY + ${MUPARSER_FOLDER}/include/ + DESTINATION ${DEAL_II_INCLUDE_RELDIR}/deal.II/bundled + COMPONENT library + FILES_MATCHING PATTERN "*.h" + ) ENDIF()