From 139c24deb99fe74ef573c29cf07d9612e95edcb9 Mon Sep 17 00:00:00 2001 From: Simon Sticko Date: Wed, 1 Feb 2023 19:30:24 +0100 Subject: [PATCH] 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. --- bundled/CMakeLists.txt | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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() -- 2.39.5