forked from AliceO2Group/AliceO2
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCMakeLists.txt
More file actions
36 lines (28 loc) · 744 Bytes
/
Copy pathCMakeLists.txt
File metadata and controls
36 lines (28 loc) · 744 Bytes
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
set(MODULE_NAME "Steer")
O2_SETUP(NAME ${MODULE_NAME})
set(SRCS
src/O2MCApplication.cxx
src/InteractionSampler.cxx
src/HitProcessingManager.cxx
)
set(HEADERS
include/${MODULE_NAME}/InteractionSampler.h
include/${MODULE_NAME}/HitProcessingManager.h
include/${MODULE_NAME}/O2RunSim.h
include/${MODULE_NAME}/O2MCApplication.h
include/${MODULE_NAME}/O2MCApplicationBase.h
)
set(LINKDEF src/SteerLinkDef.h)
set(LIBRARY_NAME ${MODULE_NAME})
set(BUCKET_NAME steer_bucket)
O2_GENERATE_LIBRARY()
set(TEST_SRCS
test/testInteractionSampler.cxx
test/testHitProcessingManager.cxx
)
O2_GENERATE_TESTS(
MODULE_LIBRARY_NAME ${LIBRARY_NAME}
BUCKET_NAME steer_bucket
TEST_SRCS ${TEST_SRCS}
)
add_subdirectory(DigitizerWorkflow)