From: Timo Heister Date: Thu, 3 Apr 2025 01:07:48 +0000 (-0400) Subject: Kokkos: call find_package() without QUIET X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=948703d932d2ee762c018cc694c8d02f6924f4fe;p=dealii.git Kokkos: call find_package() without QUIET Getting Kokkos with device support find_package() to succeed is somewhat tricky and nearly impossible if you remove all output. We typically find all packages with QUIET but I think it is acceptable to not do this for Kokkos. --- diff --git a/cmake/modules/FindDEAL_II_KOKKOS.cmake b/cmake/modules/FindDEAL_II_KOKKOS.cmake index 348eda5ca6..54481d211d 100644 --- a/cmake/modules/FindDEAL_II_KOKKOS.cmake +++ b/cmake/modules/FindDEAL_II_KOKKOS.cmake @@ -83,7 +83,7 @@ endif() # Find the Kokkos CMake configuration: # -find_package(Kokkos ${KOKKOS_MINIMUM_REQUIRED_VERSION} QUIET HINTS ${KOKKOS_DIR}) +find_package(Kokkos ${KOKKOS_MINIMUM_REQUIRED_VERSION} HINTS ${KOKKOS_DIR}) if (DEAL_II_WITH_TRILINOS AND TRILINOS_VERSION VERSION_LESS 14 AND DEAL_II_TRILINOS_WITH_KOKKOS)