forked from mcoquet642/AliceO2
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCMakeLists.txt
More file actions
46 lines (39 loc) · 1.86 KB
/
CMakeLists.txt
File metadata and controls
46 lines (39 loc) · 1.86 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
# Copyright CERN and copyright holders of ALICE O2. This software is distributed
# under the terms of the GNU General Public License v3 (GPL Version 3), copied
# verbatim in the file "COPYING".
#
# See http://alice-o2.web.cern.ch/license for full licensing information.
#
# 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.
# FIXME Is this one supposed to be a header only library (in which case the .h
# to be installed should be in include/TestWorkflows) or not a library at all ?
# o2_add_library(TestWorkflows SOURCES src/dummy.cxx
#
# set(HEADERS src/o2_sim_its_ALP3.h src/o2_sim_tpc.h )
#
o2_add_executable(track-collection-iteration
SOURCES src/trackCollectionIteration.cxx
PUBLIC_LINK_LIBRARIES O2::Framework
COMPONENT_NAME AnalysisTutorial)
o2_add_executable(track-iteration
SOURCES src/trackIteration.cxx
PUBLIC_LINK_LIBRARIES O2::Framework
COMPONENT_NAME AnalysisTutorial)
o2_add_executable(collision-tracks-iteration
SOURCES src/collisionTracksIteration.cxx
PUBLIC_LINK_LIBRARIES O2::Framework
COMPONENT_NAME AnalysisTutorial)
o2_add_executable(new-collections
SOURCES src/newCollections.cxx
PUBLIC_LINK_LIBRARIES O2::Framework
COMPONENT_NAME AnalysisTutorial)
o2_add_executable(dynamic-columns
SOURCES src/dynamicColumns.cxx
PUBLIC_LINK_LIBRARIES O2::Framework
COMPONENT_NAME AnalysisTutorial)
o2_add_executable(histograms
SOURCES src/histograms.cxx
PUBLIC_LINK_LIBRARIES O2::Framework
COMPONENT_NAME AnalysisTutorial)