-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCMakeLists.txt
More file actions
120 lines (97 loc) · 3.01 KB
/
Copy pathCMakeLists.txt
File metadata and controls
120 lines (97 loc) · 3.01 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
# ======================================================================
# lariatsoft main build file
#
# cd .../path/to/build/directory
# source .../path/to/lariatsoft/ups/setup_for_development <-d|-p>
# cmake [-DCMAKE_INSTALL_PREFIX=/install/path]
# -DCMAKE_BUILD_TYPE=$CETPKG_TYPE
# $CETPKG_SOURCE
# make
# make test
# make install
# make package (builds distribution tarfile)
# ======================================================================
# use cmake 2.8 or later
cmake_minimum_required (VERSION 3.3)
project(lariatsoft)
# cetbuildtools contains our cmake modules
SET ( CETBUILDTOOLS_VERSION $ENV{CETBUILDTOOLS_VERSION} )
IF (NOT CETBUILDTOOLS_VERSION)
MESSAGE (FATAL_ERROR "ERROR: setup cetbuildtools to get the cmake modules")
ENDIF()
set(CMAKE_MODULE_PATH $ENV{CANVAS_ROOT_IO_DIR}/Modules
$ENV{CETBUILDTOOLS_DIR}/Modules
${CMAKE_MODULE_PATH})
include(CetCMakeEnv)
cet_cmake_env()
set_install_root()
cet_set_compiler_flags(DIAGS CAUTIOUS
WERROR
NO_UNDEFINED
EXTRA_FLAGS -pedantic -Wno-unused-local-typedefs -Wno-unused-variable
EXTRA_CXX_FLAGS
)
cet_report_compiler_flags()
# these are minimum required versions, not the actual product versions
# these are the larsoft products
find_ups_product( larsoft )
find_ups_product( larcoreobj )
find_ups_product( larcore )
find_ups_product( lardataobj )
find_ups_product( lardataalg )
find_ups_product( lardata )
find_ups_product( larevt )
find_ups_product( larsim )
find_ups_product( nug4 )
find_ups_product( larreco )
find_ups_product( larana )
find_ups_product( larpandora )
find_ups_product( lareventdisplay )
find_ups_product( cetbuildtools )
# art related products
find_ups_product( art )
find_ups_product(art_root_io)
find_ups_product( artdaq_core )
# products that LArIAT needs for input data
find_ups_product( LariatFilters )
find_ups_product( lariatfragments )
# non-art library dependences
find_ups_product( postgresql )
find_ups_product( nuevdb )
find_ups_product( nurandom )
find_ups_root( root )
find_ups_geant4( geant4 )
# macros for artdaq_dictionary and simple_plugin
include(ArtDictionary)
include(ArtMake)
include(BuildPlugins)
# artdaq_core Utility library
cet_find_library( ARTDAQ-CORE_UTILITIES NAMES artdaq-core_Utilities PATHS ENV ARTDAQ_CORE_LIB )
# source
add_subdirectory(Calibration)
add_subdirectory(DetectorSim)
add_subdirectory(Geo)
add_subdirectory(LArIATAnaModule)
add_subdirectory(LArIATDataProducts)
add_subdirectory(LArIATDataProviders)
add_subdirectory(LArIATEventGenerator)
add_subdirectory(LArIATFilterModule)
add_subdirectory(LArIATLArG4)
add_subdirectory(LArIATRecoAlg)
add_subdirectory(LArIATRecoModule)
add_subdirectory(LArIATChecks)
add_subdirectory(RawDataUtilities)
add_subdirectory(Utilities)
add_subdirectory(MichelQL)
# fcl files
add_subdirectory(JobConfigurations)
add_subdirectory(JobConfigurations/old_fcl)
add_subdirectory(LArSoftConfigurations)
# tests
add_subdirectory(test)
# ups - table and config files
add_subdirectory(ups)
# ArcS
add_subdirectory(ArCS)
# packaging utility
include(UseCPack)