forked from angerami/MLTree
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCMakeLists.txt
76 lines (66 loc) · 2.12 KB
/
CMakeLists.txt
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
################################################################################
# Package: MLTree
################################################################################
# Converted from cmt/requirements using documentation here for building a "component library"
# https://twiki.cern.ch/twiki/bin/view/AtlasComputing/SoftwareTutorialAdvancedCMake
# Declare the package name:
atlas_subdir( MLTree )
atlas_depends_on_subdirs( PRIVATE
Control/AthenaBaseComps
Calorimeter/CaloIdentifier
Trigger/TrigEvent/TrigCaloEvent
Reconstruction/RecoTools/RecoToolInterfaces
Event/xAOD/xAODCaloEvent
Event/xAOD/xAODEventInfo
Event/xAOD/xAODTruth
Event/xAOD/xAODEventShape
Calorimeter/CaloEvent
Calorimeter/CaloUtils
TileCalorimeter/TileIdentifier
TileCalorimeter/TileEvent
Tracking/TrkExtrapolation/TrkExInterfaces
Tracking/TrkEvent/TrkParameters
Tracking/TrkEvent/TrkTrack
Event/xAOD/xAODTracking
Calorimeter/CaloTrackingGeometry
Tracking/TrkDetDescr/TrkSurfaces
DetectorDescription/GeoPrimitives
Tracking/TrkEvent/TrkCaloExtension
Calorimeter/CaloDetDescr
Tracking/TrkEvent/TrkParametersIdentificationHelpers)
# Define long list of link libraries as a local variable
set( _athLINKLIBS AthenaBaseComps
CaloIdentifier
TrigCaloEvent
RecoToolInterfaces
xAODCaloEvent
xAODEventInfo
xAODTruth
xAODEventShape
CaloEvent
CaloUtils
TileIdentifier
TileEvent
TrkExInterfaces
TrkParameters
TrkTrack
xAODTracking
CaloTrackingGeometry
TrkSurfaces
GeoPrimitives
TrkCaloExtension
CaloDetDescr
TrkParametersIdentificationHelpers)
# External dependencies:
# find_package( ROOT COMPONENTS Core Tree MathCore Hist RIO pthread )
# Component(s) in the package:
atlas_add_component( MLTree
src/*.cxx
src/components/*.cxx
INCLUDE_DIRS ${ROOT_INCLUDE_DIRS}
LINK_LIBRARIES ${ROOT_LIBRARIES} ${_athLINKLIBS} )
# Install files from the package:
atlas_install_python_modules( python/*.py )
atlas_install_joboptions( share/*.py )
# Clean up
unset( _athLINKLIBS)