From b16295cdd6fc9d7b6e2c85d0ac4593c67aed863d Mon Sep 17 00:00:00 2001 From: Matthias Maier Date: Tue, 25 Mar 2025 12:42:38 -0500 Subject: [PATCH] CMake: work around an issue with faulty Trilinos configurations --- cmake/modules/FindDEAL_II_KOKKOS.cmake | 31 +++++++++++++++++++------- 1 file changed, 23 insertions(+), 8 deletions(-) diff --git a/cmake/modules/FindDEAL_II_KOKKOS.cmake b/cmake/modules/FindDEAL_II_KOKKOS.cmake index 70ca71991a..ac27fe1b62 100644 --- a/cmake/modules/FindDEAL_II_KOKKOS.cmake +++ b/cmake/modules/FindDEAL_II_KOKKOS.cmake @@ -82,15 +82,30 @@ endif() find_package(Kokkos ${KOKKOS_MINIMUM_REQUIRED_VERSION} QUIET HINTS ${KOKKOS_DIR}) -set(_target) -if(Kokkos_FOUND) - set(_target Kokkos::kokkos) -endif() +if (DEAL_II_WITH_TRILINOS AND TRILINOS_VERSION VERSION_LESS 14 + AND DEAL_II_TRILINOS_WITH_KOKKOS) + # + # Workaround: Trilinos prior to version 14 needs extensive cleanup of the + # exported CMake configuration, which we do in + # FindDEAL_II_TRILINOS.cmake. This also applies to the bundled Kokkos + # library, which prevents us from simply importing the Kokkos::kokkos + # target. We work around this issue by simply not calling + # process_feature(). + # + set(KOKKOS_FOUND TRUE) + +else() -process_feature(KOKKOS - TARGETS REQUIRED _target - CLEAR Kokkos_DIR - ) + set(_target) + if(Kokkos_FOUND) + set(_target Kokkos::kokkos) + endif() + + process_feature(KOKKOS + TARGETS REQUIRED _target + CLEAR Kokkos_DIR + ) +endif() if(KOKKOS_FOUND) # -- 2.39.5