-
Notifications
You must be signed in to change notification settings - Fork 22
/
CMakeLists.txt
77 lines (61 loc) · 2.16 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
# ======================================================================
# larrecodnn main build file
#
# cd .../path/to/build/directory
# source .../path/to/larrecodnn/ups/setup_for_development <-d|-p>
# buildtool [-I /install/path] -bt[i] -jN
# ======================================================================
cmake_minimum_required(VERSION 3.20 FATAL_ERROR)
find_package(cetmodules REQUIRED)
project(larrecodnn VERSION 10.01.00 LANGUAGES CXX)
include(CetCMakeEnv)
cet_cmake_env()
cet_set_compiler_flags(DIAGS CAUTIOUS
WERROR
NO_UNDEFINED
EXTRA_FLAGS -Wno-unused-local-typedefs
)
cet_report_compiler_flags(REPORT_THRESHOLD VERBOSE)
# needed because we call cet_make_plugin_builder
cet_cmake_module_directories(Modules BINARY)
find_package(larfinder REQUIRED EXPORT)
find_package(larreco REQUIRED EXPORT)
find_package(larsim REQUIRED EXPORT)
find_package(larevt REQUIRED EXPORT)
find_package(lardata REQUIRED EXPORT)
find_package(larcore REQUIRED EXPORT)
find_package(lardataobj REQUIRED EXPORT)
find_package(larcorealg REQUIRED EXPORT)
find_package(larcoreobj REQUIRED EXPORT)
find_package(nusimdata REQUIRED EXPORT)
find_package(nurandom REQUIRED EXPORT)
find_package(art_root_io REQUIRED EXPORT)
find_package(art REQUIRED EXPORT)
find_package(canvas REQUIRED EXPORT)
find_package(messagefacility REQUIRED EXPORT)
find_package(cetlib REQUIRED EXPORT)
find_package(cetlib_except REQUIRED EXPORT)
find_package(CLHEP COMPONENTS Random REQUIRED EXPORT)
find_package(ROOT COMPONENTS Core Hist Tree REQUIRED EXPORT)
find_package(TBB REQUIRED EXPORT)
find_package(TritonCommon QUIET EXPORT)
find_package(TritonClient QUIET EXPORT)
find_package(TensorFlow 2.6.0 QUIET EXPORT)
find_package(Torch QUIET EXPORT)
find_package(TorchScatter QUIET EXPORT)
find_package(Threads REQUIRED EXPORT)
if (TritonClient_FOUND)
find_package(Protobuf REQUIRED EXPORT)
find_package(gRPC REQUIRED EXPORT)
endif()
find_package(HDF5 REQUIRED EXPORT)
find_package(hep_hpc REQUIRED EXPORT)
# macros for dictionary and simple_plugin
include(ArtDictionary)
include(CetMake)
include(BuildPlugins)
# source
add_subdirectory(larrecodnn)
# ups - table and config files
# packaging utility
cet_cmake_config()