From f34257f809e138e671a998594cf974180197cd4b Mon Sep 17 00:00:00 2001 From: Bernhard Manfred Gruber Date: Sun, 27 Nov 2022 23:20:48 +0100 Subject: [PATCH] Let CMake tell users if it found alpaka --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 420280ef70..209f67c23b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -125,7 +125,7 @@ if (LLAMA_BUILD_EXAMPLES) add_subdirectory("examples/memmap") # alpaka examples - find_package(alpaka 0.9.0 QUIET) + find_package(alpaka 0.9.0) if (_alpaka_FOUND) add_subdirectory("examples/alpaka/nbody") add_subdirectory("examples/alpaka/vectoradd")