From a66390feee938329cf0553c95ce52672719f9c03 Mon Sep 17 00:00:00 2001 From: Timo Heister Date: Sun, 23 Apr 2017 17:29:41 -0400 Subject: [PATCH] Install muparser headers This fixes compilation error introduced by #4285 (muparser.h now needs to be accessible for user projects). --- bundled/CMakeLists.txt | 6 ++++++ 1 file changed, 6 insertions(+) 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() -- 2.39.5