From: Matthias Maier Date: Tue, 25 Mar 2025 17:42:38 +0000 (-0500) Subject: CMake: work around an issue with faulty Trilinos configurations X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b16295cdd6fc9d7b6e2c85d0ac4593c67aed863d;p=dealii.git CMake: work around an issue with faulty Trilinos configurations --- 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) #