forked from SBNSoftware/icaruscode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCMakeLists.txt
More file actions
119 lines (98 loc) · 3.53 KB
/
CMakeLists.txt
File metadata and controls
119 lines (98 loc) · 3.53 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
# ======================================================================
# icaruscode main build file
#
# cd .../path/to/build/directory
# source .../path/to/larsoft/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 3.10 or later
cmake_minimum_required (VERSION 3.10)
message(STATUS
"\n-- ============================================================================="
"\n-- === *** Start of configuration of icaruscode ***"
"\n-- ===")
project(icaruscode)
# 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_DIR}/Modules
$ENV{CETBUILDTOOLS_DIR}/Modules
${CMAKE_MODULE_PATH})
include(CetCMakeEnv)
cet_cmake_env()
cet_set_compiler_flags(DIAGS CAUTIOUS
WERROR
NO_UNDEFINED
EXTRA_FLAGS -pedantic -Wno-unused-local-typedefs
)
cet_report_compiler_flags()
# these are minimum required versions, not the actual product versions
find_ups_product( larcore v1_00_00 )
find_ups_product( larcoreobj )
find_ups_product( lardata v1_00_00 )
find_ups_product( lardataobj )
find_ups_product( larevt v1_00_00 )
find_ups_product( larsim v1_00_00 )
find_ups_product( larreco v1_00_00 )
find_ups_product( larpandora v1_00_00 )
find_ups_product( larana v1_00_00 )
find_ups_product( larpandora v1_00_00 )
find_ups_product( nutools v1_00_00 )
find_ups_product( nug4 )
find_ups_product( nurandom )
find_ups_product( art v1_09_00 )
find_ups_product( art_root_io)
find_ups_product( cetbuildtools v3_10_00 )
find_ups_product( libwda )
find_ups_product( postgresql v9_1_5 )
find_ups_product( eigen )
find_ups_product( fftw )
find_ups_boost( v1_53_0 )
find_ups_product( ifdh_art )
find_ups_product( guideline_sl )
find_ups_product( libwda )
find_ups_product( icarus_signal_processing )
find_ups_product( icarusutil )
find_ups_product( icarus_data )
find_ups_product( artdaq_core )
find_ups_product( sbndaq_artdaq_core )
cet_find_library( PQ NAMES pq PATHS ENV POSTGRESQL_LIBRARIES NO_DEFAULT_PATH )
cet_find_library( NURANDOM_RANDOMUTILS_NURANDOMSERVICE_SERVICE
NAMES nurandom_RandomUtils_NuRandomService_service
PATHS ENV NURANDOM_LIB NO_DEFAULT_PATH )
# deal with fftw
cet_find_library(ICARUS_FFTW3_LIBRARY NAMES fftw3 PATHS $ENV{FFTW_LIBRARY} )
cet_find_library(ICARUS_FFTW3F_LIBRARY NAMES fftw3f PATHS $ENV{FFTW_LIBRARY} )
cet_find_library(ICARUS_FFTW3L_LIBRARY NAMES fftw3l PATHS $ENV{FFTW_LIBRARY} )
cet_find_library(ICARUS_FFTW3Q_LIBRARY NAMES fftw3q PATHS $ENV{FFTW_LIBRARY} )
set(ICARUS_FFTW_LIBRARIES ${ICARUS_FFTW3_LIBRARY} ${ICARUS_FFTW3F_LIBRARY} ${ICARUS_FFTW3L_LIBRARY} ${ICARUS_FFTW3Q_LIBRARY})
# macros for dictionary and simple_plugin
include(ArtDictionary)
include(ArtMake)
include(BuildPlugins)
# ADD SOURCE CODE SUBDIRECTORIES HERE
add_subdirectory(icaruscode)
add_subdirectory(scripts)
add_subdirectory(doc)
# subdirectory for test code
add_subdirectory(test)
# Top level fcl files.
add_subdirectory(fcl)
# ups - table and config files
add_subdirectory(ups)
# packaging utility
include(UseCPack)
message(STATUS
"\n-- ==="
"\n-- === *** End of configuration of icaruscode ***"
"\n-- ============================================================================="
"\n-- "
)