-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathCMakeLists.txt
More file actions
127 lines (106 loc) · 4.92 KB
/
CMakeLists.txt
File metadata and controls
127 lines (106 loc) · 4.92 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
#----------------------------------------------------------------------------
# Setup the project
cmake_minimum_required(VERSION 2.6 FATAL_ERROR)
project(ArgonCubeOptPh)
#----------------------------------------------------------------------------
# Find Geant4 package, activating all available UI and Vis drivers by default
# You can set WITH_GEANT4_UIVIS to OFF via the command line or ccmake/cmake-gui
# to build a batch mode only executable
#
#set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "$ENV(HOME)/software/nlohmann_json/lib/cmake")
#find_package(nlohmann_json REQUIRED)
option(WITH_GEANT4_UIVIS "Build the ArgonCube simulation code for optical photons with Geant4 UI and Vis drivers" ON)
if(WITH_GEANT4_UIVIS)
find_package(Geant4 REQUIRED ui_all vis_all)
else()
find_package(Geant4 REQUIRED)
endif()
set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "$ENV{ROOTSYS}/etc/cmake")
find_package(ROOT REQUIRED)
#----------------------------------------------------------------------------
# Setup Geant4 include directories and compile definitions
# Setup include directory for this project
#
include(${Geant4_USE_FILE})
#include(${ROOT_USE_FILE})
#----------------------------------------------------------------------------
# Locate sources and headers for this project
# NB: headers are included so they will show up in IDEs
#
include_directories(${CMAKE_CURRENT_SOURCE_DIR}/include
${Geant4_INCLUDE_DIR}
$ENV{ROOTSYS}/include
${ROOT_INCLUDE_DIR}
)
file(GLOB sources ${PROJECT_SOURCE_DIR}/src/*.cc)
file(GLOB headers ${PROJECT_SOURCE_DIR}/include/*.hh)
#set(sources
# ${PROJECT_SOURCE_DIR}/src/AnalysisManager.cc
# ${PROJECT_SOURCE_DIR}/src/AnalysisMessenger.cc
# ${PROJECT_SOURCE_DIR}/src/DetConstr.cc
# ${PROJECT_SOURCE_DIR}/src/DetectorMessenger.cc
# ${PROJECT_SOURCE_DIR}/src/EventAction.cc
# ${PROJECT_SOURCE_DIR}/src/EventData.cc
# ${PROJECT_SOURCE_DIR}/src/ParticleSource.cc
# ${PROJECT_SOURCE_DIR}/src/ParticleSourceMessenger.cc
# ${PROJECT_SOURCE_DIR}/src/PhysList.cc
# ${PROJECT_SOURCE_DIR}/src/PhysListMessenger.cc
# ${PROJECT_SOURCE_DIR}/src/PrimGenAction.cc
# ${PROJECT_SOURCE_DIR}/src/RunAction.cc
# ${PROJECT_SOURCE_DIR}/src/SteppingAction.cc
# )
# set(headers
# ${PROJECT_SOURCE_DIR}/include/AnalysisManager.hh
# ${PROJECT_SOURCE_DIR}/include/AnalysisMessenger.hh
# ${PROJECT_SOURCE_DIR}/include/DetConstr.hh
# ${PROJECT_SOURCE_DIR}/include/DetectorMessenger.hh
# ${PROJECT_SOURCE_DIR}/include/EventAction.hh
# ${PROJECT_SOURCE_DIR}/include/EventData.hh
# ${PROJECT_SOURCE_DIR}/include/ParticleSource.hh
# ${PROJECT_SOURCE_DIR}/include/ParticleSourceMessenger.hh
# ${PROJECT_SOURCE_DIR}/include/PhysList.hh
# ${PROJECT_SOURCE_DIR}/include/PhysListMessenger.hh
# ${PROJECT_SOURCE_DIR}/include/PrimGenAction.hh
# ${PROJECT_SOURCE_DIR}/include/RunAction.hh
# ${PROJECT_SOURCE_DIR}/include/SteppingAction.hh
# )
#----------------------------------------------------------------------------
# Add the executable, and link it to the Geant4 libraries
#
add_executable(ArgonCubeOptPh ${PROJECT_SOURCE_DIR}/prog/ArCubeOptPh.cpp ${sources} ${headers})
target_link_libraries(ArgonCubeOptPh ${Geant4_LIBRARIES} ${ROOT_LIBRARIES})
add_executable(ArgonCubeOptPh-PVlist ${PROJECT_SOURCE_DIR}/prog/ArCubeOptPh-PVlist.cpp ${sources} ${headers})
target_link_libraries(ArgonCubeOptPh-PVlist ${Geant4_LIBRARIES} ${ROOT_LIBRARIES})
add_executable(ArgonCubeOptPh-LVlist ${PROJECT_SOURCE_DIR}/prog/ArCubeOptPh-LVlist.cpp ${sources} ${headers})
target_link_libraries(ArgonCubeOptPh-LVlist ${Geant4_LIBRARIES} ${ROOT_LIBRARIES})
#add_executable(ArgonCubeOptPh-PVscan ${PROJECT_SOURCE_DIR}/prog/ArCubeOptPh-PVscan.cpp ${sources} ${headers})
#target_link_libraries(ArgonCubeOptPh-PVscan ${Geant4_LIBRARIES} ${ROOT_LIBRARIES})
add_executable(ArgonCubeOptPh-GeomInfo ${PROJECT_SOURCE_DIR}/prog/ArCubeOptPh-GeomInfo.cpp ${sources} ${headers})
target_link_libraries(ArgonCubeOptPh-GeomInfo ${Geant4_LIBRARIES} ${ROOT_LIBRARIES})
#----------------------------------------------------------------------------
# Copy all scripts to the build directory, i.e. the directory in which we
# build the applications. This is so that we can run the executable directly because it
# relies on these scripts being in the current working directory.
#
##set(_SCRIPTS
##icons.mac
##gui.mac
##vis.mac
##)
##foreach(_script ${_SCRIPTS})
##configure_file(
##${PROJECT_SOURCE_DIR}/macros/${_script}
##${PROJECT_BINARY_DIR}/${_script}
##COPYONLY
##)
##endforeach()
#----------------------------------------------------------------------------
# Add program to the project targets
# (this avoids the need of typing the program name after make)
#
#add_custom_target(Xu2OptPh DEPENDS MITtut)
#----------------------------------------------------------------------------
# Install the executable to 'bin' directory under CMAKE_INSTALL_PREFIX
#
#install(TARGETS ArgonCubeOptPh ArgonCubeOptPh-PVlist DESTINATION bin)
#install(FILES ${_SCRIPTS} DESTINATION bin)