-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathCMakeLists.txt
More file actions
73 lines (58 loc) · 1.98 KB
/
CMakeLists.txt
File metadata and controls
73 lines (58 loc) · 1.98 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
# ======================================================================
# sbnobj main build file
#
# cd .../path/to/build/directory
# source .../path/to/sbnobj/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.19 FATAL_ERROR)
find_package(cetmodules 3.20.00 REQUIRED)
project(sbnobj VERSION 10.20.04 LANGUAGES CXX)
message(STATUS
"\n-- ============================================================================="
"\n-- === *** Start of configuration of ${PROJECT_NAME} ***"
"\n-- ===")
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(REPORT_THRESHOLD VERBOSE)
# these are minimum required versions, not the actual product versions
# this package must NOT depend on art, nor on the *alg LArSoft packages
find_package( canvas REQUIRED EXPORT)
find_package( messagefacility REQUIRED )
find_package( larcoreobj REQUIRED )
find_package( lardataobj REQUIRED )
find_package( nusimdata REQUIRED )
find_package( Boost COMPONENTS system )
find_package( ROOT REQUIRED )
find_package( CLHEP REQUIRED )
find_package( dk2nudata REQUIRED )
# macros for dictionary and simple_plugin
include(ArtDictionary)
include(CetMake)
include(BasicPlugin)
# add cet_find_library commands here when needed
# ADD SOURCE CODE SUBDIRECTORIES HERE
add_subdirectory(sbnobj)
# tests
add_subdirectory(test)
# ups - table and config files
# must be AFTER all other subdirectories
# packaging utility - must be last
message(STATUS
"\n-- ==="
"\n-- === *** End of configuration of ${PROJECT_NAME} ***"
"\n-- ============================================================================="
"\n-- "
)
cet_cmake_config()