Warning, /geant4/examples/extended/hadronic/Hadr02/CMakeLists.txt is written in an unsupported language. File is not indexed.
0001 #----------------------------------------------------------------------------
0002 # Setup the project
0003 cmake_minimum_required(VERSION 3.16...3.27)
0004 project(Hadr02)
0005
0006 #----------------------------------------------------------------------------
0007 # Prepend our own CMake Modules to the search path
0008 set(CMAKE_MODULE_PATH ${PROJECT_SOURCE_DIR}/cmake/Modules ${CMAKE_MODULE_PATH})
0009
0010 #----------------------------------------------------------------------------
0011 # Check whether CRMC should be used or not
0012
0013 option(G4_USE_CRMC "Using CRMC" OFF)
0014 if(G4_USE_CRMC)
0015 message(STATUS "G4_USE_CRMC ON : Using CRMC for building Hadr02")
0016 add_definitions(-DG4_USE_CRMC)
0017 message(STATUS "CMAKE_MODULE_PATH =" ${CMAKE_MODULE_PATH} " ; PROJECT_SOURCE_DIR = " ${PROJECT_SOURCE_DIR})
0018 find_package(CRMC REQUIRED)
0019 if(CRMC_FOUND)
0020 message(STATUS "CRMC was found :" ${CRMC_INCLUDE_DIR})
0021 else()
0022 message(FATAL_ERROR "CRMC was NOT found !")
0023 endif()
0024 else()
0025 message(STATUS "G4_USE_CRMC OFF : NOT using CRMC for building Hadr02")
0026 endif()
0027
0028 #----------------------------------------------------------------------------
0029 # Find Geant4 package, activating all available UI and Vis drivers by default
0030 # You can set WITH_GEANT4_UIVIS to OFF via the command line or ccmake/cmake-gui
0031 # to build a batch mode only executable
0032 #
0033 option(WITH_GEANT4_UIVIS "Build example with Geant4 UI and Vis drivers" ON)
0034 if(WITH_GEANT4_UIVIS)
0035 find_package(Geant4 REQUIRED ui_all vis_all)
0036 else()
0037 find_package(Geant4 REQUIRED)
0038 endif()
0039
0040 #----------------------------------------------------------------------------
0041 # Setup Geant4 include directories and compile definitions
0042 #
0043 include(${Geant4_USE_FILE})
0044
0045 #----------------------------------------------------------------------------
0046 # Locate sources and headers for this project
0047 #
0048 include_directories(${CRMC_INCLUDE_DIR} ${PROJECT_SOURCE_DIR}/include ${Geant4_INCLUDE_DIR})
0049 file(GLOB sources ${PROJECT_SOURCE_DIR}/src/*.cc)
0050 file(GLOB headers ${CRMC_INCLUDE_DIR}/*.h ${PROJECT_SOURCE_DIR}/include/*.hh)
0051
0052 #----------------------------------------------------------------------------
0053 # Add the executable, and link it to the Geant4 libraries
0054 #
0055 add_executable(Hadr02 Hadr02.cc ${sources} ${headers})
0056 target_link_libraries(Hadr02 ${CRMC_LIBRARIES} ${Geant4_LIBRARIES})
0057
0058 #----------------------------------------------------------------------------
0059 # Copy all scripts to the build directory, i.e. the directory in which we
0060 # build Hadr02. This is so that we can run the executable directly because it
0061 # relies on these scripts being in the current working directory.
0062 #
0063 set(Hadr02_SCRIPTS
0064 hadr02.in hadr02.out urqmd.in crmc.in vis.mac
0065 )
0066
0067 foreach(_script ${Hadr02_SCRIPTS})
0068 configure_file(
0069 ${PROJECT_SOURCE_DIR}/${_script}
0070 ${PROJECT_BINARY_DIR}/${_script}
0071 COPYONLY
0072 )
0073 endforeach()
0074
0075 if(G4_USE_CRMC)
0076 if(CRMC_FOUND)
0077 configure_file(${CRMC_BUILD_DIR}/crmc.param ${PROJECT_BINARY_DIR} COPYONLY)
0078 endif()
0079 endif()
0080
0081 #----------------------------------------------------------------------------
0082 # Install the executable to 'bin' directory under CMAKE_INSTALL_PREFIX
0083 #
0084 install(TARGETS Hadr02 DESTINATION bin)
0085