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
90 lines (86 loc) · 4.77 KB
/
CMakeLists.txt
File metadata and controls
90 lines (86 loc) · 4.77 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
# Copyright 2019-2020 CERN and copyright holders of ALICE O2.
# See https://alice-o2.web.cern.ch/copyright for details of the copyright holders.
# All rights not expressly granted are reserved.
#
# This software is distributed under the terms of the GNU General Public
# License v3 (GPL Version 3), copied verbatim in the file "COPYING".
#
# In applying this license CERN does not waive the privileges and immunities
# granted to it by virtue of its status as an Intergovernmental Organization
# or submit itself to any jurisdiction.
o2_add_executable(digitizer-workflow
COMPONENT_NAME sim
SOURCES src/CTPDigitizerSpec.cxx
src/FT0DigitizerSpec.cxx
src/FV0DigitizerSpec.cxx
src/FDDDigitizerSpec.cxx
src/GRPUpdaterSpec.cxx
src/HMPIDDigitizerSpec.cxx
src/ITSMFTDigitizerSpec.cxx
src/MCHDigitizerSpec.cxx
src/MIDDigitizerSpec.cxx
src/PHOSDigitizerSpec.cxx
src/CPVDigitizerSpec.cxx
src/SimReaderSpec.cxx
src/SimpleDigitizerWorkflow.cxx
src/TPCDigitizerSpec.cxx
src/ZDCDigitizerSpec.cxx
src/TOFDigitizerSpec.cxx
$<$<BOOL:${ENABLE_UPGRADES}>:src/ITS3DigitizerSpec.cxx>
$<$<BOOL:${ENABLE_UPGRADES}>:src/TRKDigitizerSpec.cxx>
PUBLIC_LINK_LIBRARIES O2::Framework
O2::Steer
O2::CommonConstants
O2::EMCALSimulation
O2::EMCALWorkflow
O2::FT0Simulation
O2::FV0Simulation
O2::FDDSimulation
O2::CTPSimulation
O2::CTPWorkflowIO
O2::FDDWorkflow
O2::HMPIDSimulation
O2::ITSMFTSimulation
O2::ITSSimulation
O2::ITSMFTWorkflow
O2::MCHSimulation
O2::MCHMappingImpl4
O2::MCHIO
O2::MCHDigitFiltering
O2::MFTSimulation
O2::MIDSimulation
O2::MIDRaw
O2::PHOSSimulation
O2::CPVSimulation
O2::TOFSimulation
O2::TOFCalibration
O2::TOFReconstruction
O2::TOFWorkflowIO
O2::TPCSimulation
O2::TPCSimWorkflow
O2::TRDSimulation
O2::TRDWorkflow
O2::TRDWorkflowIO
O2::DataFormatsTRD
O2::ZDCSimulation
O2::ZDCWorkflow
O2::DetectorsRaw
$<$<BOOL:${ENABLE_UPGRADES}>:O2::ITS3Simulation>
$<$<BOOL:${ENABLE_UPGRADES}>:O2::ITS3Workflow>
$<$<BOOL:${ENABLE_UPGRADES}>:O2::ITS3Align>
$<$<BOOL:${ENABLE_UPGRADES}>:O2::TRKSimulation>
$<$<BOOL:${ENABLE_UPGRADES}>:O2::TRKWorkflow>)
o2_add_executable(mctruth-testworkflow
COMPONENT_NAME sim
SOURCES src/MCTruthTestWorkflow.cxx
src/MCTruthSourceSpec.cxx
src/MCTruthWriterSpec.cxx
PUBLIC_LINK_LIBRARIES O2::Framework
O2::SimulationDataFormat)
o2_add_executable(ccdbfetcher-testworkflow
COMPONENT_NAME sim
SOURCES src/CCDBFetcherTestWorkflow.cxx
PUBLIC_LINK_LIBRARIES O2::Framework
O2::SimulationDataFormat
O2::DetectorsRaw
)