forked from DUNE/protoduneana
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCMakeLists.txt
104 lines (89 loc) · 3.04 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
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
# ======================================================================
# larsoft 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)
# ======================================================================
cmake_minimum_required (VERSION 3.20 FATAL_ERROR)
# cmake_policy(VERSION 3.19)
find_package(cetmodules REQUIRED)
project(protoduneana LANGUAGES CXX)
set(${PROJECT_NAME}_CMAKE_PROJECT_VERSION_STRING 09.89.01d01)
# cetbuildtools contains our cmake modules
include(CetCMakeEnv)
cet_cmake_env()
# Find our own CMake modules, and tell everyone else where to find them.
cet_cmake_module_directories(Modules BINARY)
cet_set_compiler_flags(DIAGS CAUTIOUS
WERROR
NO_UNDEFINED
EXTRA_FLAGS -pedantic -Wno-unused-local-typedefs -Wno-expansion-to-defined
)
cet_report_compiler_flags()
# these are minimum required versions, not the actual product versions
find_package( Boost REQUIRED COMPONENTS system ) # Needs to be first to cover for a missing transitive
# dependency from artdaq_core.
find_package( Geant4 REQUIRED )
find_package(ROOT REQUIRED)
find_package( nufinder REQUIRED )
find_package( dunecore REQUIRED )
find_package( duneprototypes REQUIRED )
find_package( dunecalib REQUIRED )
find_package( nuevdb REQUIRED )
find_package( duneopdet REQUIRED )
find_package( dunesim REQUIRED )
find_package( larcoreobj REQUIRED )
find_package( larcore REQUIRED )
find_package( larevt REQUIRED )
find_package( lardataobj REQUIRED )
find_package( lardataalg REQUIRED )
find_package( lardata REQUIRED )
find_package( larsim REQUIRED )
find_package( larpandora REQUIRED )
#find_package( pandora REQUIRED )
find_package( larreco REQUIRED )
find_package( larrecodnn REQUIRED )
find_package( larana REQUIRED )
find_package( nutools REQUIRED )
find_package( nug4 REQUIRED )
find_package( nugen REQUIRED )
find_package( GENIE REQUIRED )
find_package( nurandom REQUIRED )
find_package( art REQUIRED )
find_package( art_root_io REQUIRED)
find_package( CLHEP REQUIRED )
find_package( messagefacility REQUIRED )
find_package( PostgreSQL REQUIRED )
find_package( dunepdlegacy REQUIRED )
find_package( artdaq_core REQUIRED )
find_package( TRACE REQUIRED )
find_package( ifdh_art REQUIRED )
find_package( ifdhc REQUIRED )
find_package( systematicstools REQUIRED )
find_package( nusystematics REQUIRED )
find_package( geant4reweight REQUIRED )
#find_package( valgrind REQUIRED )
find_package( nlohmann_json REQUIRED )
if(DEFINED ENV{HEP_HPC_DIR} )
find_package( hdf5 REQUIRED )
find_package( hep_hpc REQUIRED )
endif()
# macros for dictionary and cet_build_plugin
include(ArtDictionary)
include(ArtMake)
include(BuildPlugins)
# ADD SOURCE CODE SUBDIRECTORIES HERE
add_subdirectory(protoduneana)
add_subdirectory(fcl)
# Unit tests.
#add_subdirectory(test)
# ups - table and config files
# packaging utility
cet_cmake_config()