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
97 lines (86 loc) · 4.2 KB
/
CMakeLists.txt
File metadata and controls
97 lines (86 loc) · 4.2 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
# 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_library(ITSWorkflow
TARGETVARNAME targetName
SOURCES src/RecoWorkflow.cxx
src/ClusterWriterWorkflow.cxx
src/TrackerSpec.cxx
src/TrackWriterSpec.cxx
src/TrackReaderSpec.cxx
src/VertexReaderSpec.cxx
src/ThresholdCalibratorSpec.cxx
src/ThresholdAggregatorWorkflow.cxx
src/ThresholdAggregatorSpec.cxx
src/DCSParserWorkflow.cxx
src/DCSParserSpec.cxx
src/DCSAdaposParserWorkflow.cxx
src/DCSAdaposParserSpec.cxx
src/DCSDataGeneratorWorkflow.cxx
src/DCSGeneratorSpec.cxx
src/TrackWriterWorkflow.cxx
PUBLIC_LINK_LIBRARIES O2::Framework
O2::SimConfig
O2::DetectorsDCS
O2::DataFormatsITS
O2::DataFormatsDCS
O2::DataFormatsTRD
O2::DataFormatsGlobalTracking
O2::SimulationDataFormat
O2::ITSTrackingInterface
O2::ITSReconstruction
O2::ITSMFTReconstruction
O2::ITSMFTWorkflow
O2::DetectorsCalibration
O2::GlobalTrackingWorkflowWriters
O2::CCDB
O2::GPUTracking
O2::GPUWorkflow)
o2_add_executable(reco-workflow
SOURCES src/its-reco-workflow.cxx
COMPONENT_NAME its
PUBLIC_LINK_LIBRARIES O2::ITSWorkflow
O2::GlobalTrackingWorkflowReaders)
o2_add_executable(cluster-writer-workflow
SOURCES src/its-cluster-writer-workflow.cxx
COMPONENT_NAME its
PUBLIC_LINK_LIBRARIES O2::ITSWorkflow)
o2_add_executable(track-writer-workflow
SOURCES src/its-track-writer-workflow.cxx
COMPONENT_NAME its
PUBLIC_LINK_LIBRARIES O2::ITSWorkflow)
o2_add_executable(cluster-reader-workflow
SOURCES src/its-cluster-reader-workflow.cxx
COMPONENT_NAME its
PUBLIC_LINK_LIBRARIES O2::ITSWorkflow)
o2_add_executable(threshold-calib-workflow
SOURCES src/its-threshold-calib-workflow.cxx
COMPONENT_NAME its
PUBLIC_LINK_LIBRARIES O2::ITSWorkflow)
o2_add_executable(threshold-aggregator-workflow
SOURCES src/its-threshold-aggregator-workflow.cxx
COMPONENT_NAME its
PUBLIC_LINK_LIBRARIES O2::ITSWorkflow)
o2_add_executable(dcs-parser-workflow
SOURCES src/its-dcs-parser-workflow.cxx
COMPONENT_NAME its
PUBLIC_LINK_LIBRARIES O2::ITSWorkflow)
o2_add_executable(dcs-generator-workflow
SOURCES src/its-dcs-generator-workflow.cxx
COMPONENT_NAME its
PUBLIC_LINK_LIBRARIES O2::ITSWorkflow)
o2_add_executable(dcs-adapos-parser-workflow
SOURCES src/its-dcs-adapos-parser-workflow.cxx
COMPONENT_NAME its
PUBLIC_LINK_LIBRARIES O2::ITSWorkflow)
if (OpenMP_CXX_FOUND)
target_compile_definitions(${targetName} PRIVATE WITH_OPENMP)
target_link_libraries(${targetName} PRIVATE OpenMP::OpenMP_CXX)
endif()