From: Matthias Maier Date: Wed, 4 Jan 2023 18:41:19 +0000 (-0600) Subject: CMake: fix kokkos header installation X-Git-Tag: v9.5.0-rc1~680^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=57ef18c01e14175deef0a120e2eb92d32cdcb5ab;p=dealii.git CMake: fix kokkos header installation --- diff --git a/bundled/CMakeLists.txt b/bundled/CMakeLists.txt index f45c0afbd0..cce04492e3 100644 --- a/bundled/CMakeLists.txt +++ b/bundled/CMakeLists.txt @@ -44,9 +44,15 @@ endif() if(FEATURE_KOKKOS_BUNDLED_CONFIGURED) add_subdirectory(${KOKKOS_FOLDER}) - install(DIRECTORY ${KOKKOS_BUNDLED_INCLUDE_DIRS} + install(DIRECTORY + ${KOKKOS_FOLDER}/algorithms/src/ + ${KOKKOS_FOLDER}/containers/src/ + ${KOKKOS_FOLDER}/core/src/ + ${KOKKOS_FOLDER}/simd/src/ + ${KOKKOS_FOLDER}/tpls/desul/include/ DESTINATION ${DEAL_II_INCLUDE_RELDIR}/deal.II/bundled COMPONENT library + FILES_MATCHING PATTERN "*.hpp" ) endif()