52 lines
1.6 KiB
CMake
52 lines
1.6 KiB
CMake
#----------------------------------------------------------------------------
|
|
# Setup the project
|
|
cmake_minimum_required(VERSION 3.16...3.27)
|
|
project(B5)
|
|
|
|
#----------------------------------------------------------------------------
|
|
# Find Geant4 package, activating all available UI and Vis drivers by default
|
|
# See the documentation for a guide on how to enable/disable specific components
|
|
#
|
|
find_package(Geant4 REQUIRED ui_all vis_all)
|
|
|
|
#----------------------------------------------------------------------------
|
|
# Locate sources and headers for this project
|
|
# NB: headers are included so they will show up in IDEs
|
|
#
|
|
file(GLOB sources ${PROJECT_SOURCE_DIR}/src/*.cc)
|
|
file(GLOB headers ${PROJECT_SOURCE_DIR}/include/*.hh)
|
|
|
|
#----------------------------------------------------------------------------
|
|
# Add the executable, use our local headers, and link it to the Geant4 libraries
|
|
#
|
|
add_executable(exampleB5 exampleB5.cc ${sources} ${headers})
|
|
target_include_directories(exampleB5 PRIVATE include)
|
|
target_link_libraries(exampleB5 PRIVATE ${Geant4_LIBRARIES})
|
|
|
|
#----------------------------------------------------------------------------
|
|
# Copy all scripts to the build directory, i.e. the directory in which we
|
|
# build B5. This is so that we can run the executable directly because it
|
|
# relies on these scripts being in the current working directory.
|
|
#
|
|
set(B5_SCRIPTS
|
|
exampleB5.in
|
|
exampleB5.out
|
|
icons.mac
|
|
gui.mac
|
|
run.png
|
|
init_vis.mac
|
|
run1.mac
|
|
run2.mac
|
|
vis.mac
|
|
plotter.mac
|
|
tsg_offscreen.mac
|
|
)
|
|
|
|
foreach(_script ${B5_SCRIPTS})
|
|
configure_file(
|
|
${PROJECT_SOURCE_DIR}/${_script}
|
|
${PROJECT_BINARY_DIR}/${_script}
|
|
COPYONLY
|
|
)
|
|
endforeach()
|