Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix config_summary #65

Merged
merged 1 commit into from
Nov 19, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions test/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@

if(NOT TARGET Catch2::Catch2)
find_package(Catch2 QUIET)
set(Catch2_VERSION ${Catch2_VERSION} PARENT_SCOPE)
if(NOT Catch2_FOUND)
message(STATUS "Fetching Catch2 as needed")
include(FetchContent)
Expand All @@ -32,6 +33,7 @@ add_library(portsofcall_iface INTERFACE)
if (PORTS_OF_CALL_TEST_PORTABILITY_STRATEGY STREQUAL "Kokkos")
if(NOT TARGET Kokkos::kokkos)
find_package(Kokkos QUIET)
set(Kokkos_VERSION ${Kokkos_VERSION} PARENT_SCOPE)
if(NOT Kokkos_FOUND)
message(STATUS "Fetching Kokkos as needed")
include(FetchContent)
Expand Down
Loading