-
Notifications
You must be signed in to change notification settings - Fork 499
Expand file tree
/
Copy pathCMakeLists.txt
More file actions
48 lines (44 loc) · 2.09 KB
/
CMakeLists.txt
File metadata and controls
48 lines (44 loc) · 2.09 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
# 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.
o2_add_library(ReconstructionDataFormats
SOURCES src/Track.cxx
src/TrackFwd.cxx
src/BaseCluster.cxx
src/TrackTPCITS.cxx
src/Vertex.cxx
src/PrimaryVertex.cxx
src/MatchInfoTOF.cxx
src/TrackLTIntegral.cxx
src/PID.cxx
src/DCA.cxx
PUBLIC_LINK_LIBRARIES O2::GPUCommon
O2::DetectorsCommonDataFormats
O2::CommonDataFormat)
o2_target_root_dictionary(
ReconstructionDataFormats
HEADERS include/ReconstructionDataFormats/Track.h
include/ReconstructionDataFormats/TrackFwd.h
include/ReconstructionDataFormats/BaseCluster.h
include/ReconstructionDataFormats/TrackTPCITS.h
include/ReconstructionDataFormats/Vertex.h
include/ReconstructionDataFormats/PrimaryVertex.h
include/ReconstructionDataFormats/MatchInfoTOF.h
include/ReconstructionDataFormats/TrackLTIntegral.h
include/ReconstructionDataFormats/PID.h
include/ReconstructionDataFormats/DCA.h)
o2_add_test(Vertex
SOURCES test/testVertex.cxx
COMPONENT_NAME ReconstructionDataFormats
PUBLIC_LINK_LIBRARIES O2::ReconstructionDataFormats
O2::CommonDataFormat)
o2_add_test(LTOFIntegration
SOURCES test/testLTOFIntegration.cxx
COMPONENT_NAME ReconstructionDataFormats
PUBLIC_LINK_LIBRARIES O2::ReconstructionDataFormats)