-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathCMakeLists.txt
More file actions
53 lines (40 loc) · 1.42 KB
/
CMakeLists.txt
File metadata and controls
53 lines (40 loc) · 1.42 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
# ======================================================================
# larsimrad main build file
#
# cd .../path/to/build/directory
# source .../path/to/larsimrad/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(larsimrad VERSION 10.01.01 LANGUAGES CXX)
include(CetCMakeEnv)
cet_cmake_env()
cet_set_compiler_flags(DIAGS CAUTIOUS
WERROR
NO_UNDEFINED
EXTRA_FLAGS -pedantic
)
cet_report_compiler_flags(REPORT_THRESHOLD VERBOSE)
find_package(larcore REQUIRED EXPORT)
find_package(larcoreobj REQUIRED EXPORT)
find_package(lardata REQUIRED EXPORT)
find_package(nugen REQUIRED EXPORT)
find_package(nurandom REQUIRED EXPORT)
find_package(nusimdata REQUIRED EXPORT)
find_package(art REQUIRED EXPORT)
find_package(art_root_io REQUIRED EXPORT)
find_package(fhiclcpp REQUIRED EXPORT)
find_package(cetlib REQUIRED EXPORT)
find_package(cetlib_except REQUIRED EXPORT)
find_package(BxDecay0 REQUIRED EXPORT HINTS $ENV{BXDECAY0_FQ_DIR})
find_package(CLHEP COMPONENTS Random REQUIRED EXPORT)
find_package(ROOT COMPONENTS Core EG Geom Gpad Hist Physics)
# macros for dictionary and simple_plugin
include(CetMake)
include(BuildPlugins)
cet_cmake_module_directories(Modules BINARY)
# source
add_subdirectory(larsimrad)
# packaging utility
cet_cmake_config()