-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathCMakeLists.txt
40 lines (31 loc) · 1.26 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
# ======================================================================
# nusimdata main build file
#
# ======================================================================
# use cmake 3.3 or later
cmake_minimum_required(VERSION 3.19 FATAL_ERROR)
find_package(cetmodules 2.29.06 REQUIRED)
project(nusimdata VERSION 1.28.06 LANGUAGES CXX)
include(CetCMakeEnv)
cet_cmake_env()
# Find our own CMake modules, and tell everyone else where to find them.
cet_cmake_module_directories(Modules)
# -D_GLIBCXX_USE_NANOSLEEP is needed to make std::this_thread::sleep_for available.
cet_set_compiler_flags(DIAGS CAUTIOUS WERROR
NO_UNDEFINED
EXTRA_FLAGS -pedantic
$<$<COMPILE_LANGUAGE:CXX>:-D_GLIBCXX_USE_NANOSLEEP
-Wno-unused-local-typedefs -Wno-variadic-macros>)
cet_report_compiler_flags(REPORT_THRESHOLD VERBOSE)
find_package(nufinder REQUIRED EXPORT)
# source
add_subdirectory (Modules)
find_package(cetlib_except REQUIRED PUBLIC)
find_package(canvas REQUIRED PUBLIC)
find_package(ROOT PUBLIC COMPONENTS Core EG Physics RIO Tree REQUIRED)
# source
add_subdirectory (nusimdata)
add_subdirectory (test)
# ups - table and config files
# packaging utility
cet_cmake_config()