From: Simon Sticko Date: Wed, 1 Feb 2023 18:30:24 +0000 (+0100) Subject: Make sure all Kokkos headers are installed X-Git-Tag: v9.5.0-rc1~585^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F14752%2Fhead;p=dealii.git Make sure all Kokkos headers are installed One of the Kokkos headers has a .h extension and not .hpp as the others. Add *.h to the the pattern of headers we copy over when we install the library. --- diff --git a/bundled/CMakeLists.txt b/bundled/CMakeLists.txt index 6027481e90..c922570200 100644 --- a/bundled/CMakeLists.txt +++ b/bundled/CMakeLists.txt @@ -52,7 +52,9 @@ if(DEAL_II_FEATURE_KOKKOS_BUNDLED_CONFIGURED) ${KOKKOS_FOLDER}/tpls/desul/include/ DESTINATION ${DEAL_II_INCLUDE_RELDIR}/deal.II/bundled COMPONENT library - FILES_MATCHING PATTERN "*.hpp" + FILES_MATCHING + PATTERN "*.hpp" + PATTERN "*.h" ) endif()