]> https://gitweb.dealii.org/ - dealii.git/commitdiff
CMake: work around an issue with faulty Trilinos configurations 18288/head
authorMatthias Maier <tamiko@43-1.org>
Tue, 25 Mar 2025 17:42:38 +0000 (12:42 -0500)
committerMatthias Maier <tamiko@43-1.org>
Tue, 25 Mar 2025 20:54:55 +0000 (15:54 -0500)
cmake/modules/FindDEAL_II_KOKKOS.cmake

index 70ca71991a8d4e12570b9a79b6c60c3227c66f0e..ac27fe1b626909b05a2667355bc9fff03031cfd5 100644 (file)
@@ -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)
   #

In the beginning the Universe was created. This has made a lot of people very angry and has been widely regarded as a bad move.

Douglas Adams


Typeset in Trocchi and Trocchi Bold Sans Serif.