From 5a594825693dbba822f575331ae8de6412ff3b6f Mon Sep 17 00:00:00 2001 From: Jean-Marco Alameddine <jean-marco.alameddine@tu-dortmund.de> Date: Thu, 14 Dec 2023 17:37:00 +0100 Subject: [PATCH] Add missing compile definition for FLUKA usage --- applications/CMakeLists.txt | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/applications/CMakeLists.txt b/applications/CMakeLists.txt index 27dac14b5..b9d47c0c9 100644 --- a/applications/CMakeLists.txt +++ b/applications/CMakeLists.txt @@ -1,12 +1,14 @@ SET(CMAKE_INSTALL_RPATH "${CMAKE_INSTALL_PREFIX}/lib") +add_executable (c8_air_shower c8_air_shower.cpp) +target_link_libraries (c8_air_shower CORSIKA8) + if(WITH_FLUKA) message("compiling c8_air_shower.cpp with FLUKA") + target_compile_definitions(c8_air_shower PRIVATE WITH_FLUKA) else() message("compiling c8_air_shower.cpp with UrQMD") endif() -add_executable (c8_air_shower c8_air_shower.cpp) -target_link_libraries (c8_air_shower CORSIKA8) install ( TARGETS c8_air_shower DESTINATION bin -- GitLab