From 7d42199c519b06b387968cb529529b24a2eca19a Mon Sep 17 00:00:00 2001 From: Armin Sobhani Date: Wed, 11 Oct 2023 21:45:56 -0400 Subject: [PATCH] add debugging messages --- CMakeLists.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index e6336c0..a56c562 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -28,6 +28,7 @@ if(NOT DEFINED PROJECT_NAME) else() set(NOT_SUBPROJECT OFF) set(P2RNG_COMPONENTS openmp CACHE INTERNAL "list of components") + message(STATUS "p2rng is in bundled mode") endif() ## Set default build type to Release if none was specified @@ -120,6 +121,7 @@ endif() ## try to find dependency for requested components when p2rng is being bundled # if (NOT NOT_SUBPROJECT) + message(STATUS "Finding component dependencies...") list(FIND P2RNG_COMPONENTS cuda DEPENDS_ON_CUDA) if (DEPENDS_ON_CUDA GREATER -1) find_package(CUDAToolkit 11...12 REQUIRED)