-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathCMakeLists.txt
More file actions
88 lines (61 loc) · 1.79 KB
/
CMakeLists.txt
File metadata and controls
88 lines (61 loc) · 1.79 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
# ======================================================================
# 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.19 FATAL_ERROR)
project(icarusutil VERSION 10.15.00 LANGUAGES CXX)
# cetbuildtools contains our cmake modules
find_package(cetbuildtools REQUIRED)
list(APPEND CMAKE_MODULE_PATH $ENV{CANVAS_ROOT_IO_DIR}/Modules)
include(CetCMakeEnv)
cet_cmake_env()
set_install_root()
cet_set_compiler_flags(DIAGS CAUTIOUS
WERROR
NO_UNDEFINED
EXTRA_FLAGS -pedantic
)
cet_report_compiler_flags()
# these are minimum required versions, not the actual product versions
find_ups_product( art )
find_ups_product(art_root_io)
# macros for dictionary and simple_plugin
include(ArtDictionary)
include(ArtMake)
include(BuildPlugins)
# ADD SOURCE CODE SUBDIRECTORIES HERE
# subdirectory for test code
# add_subdirectory(test)
# ups - table and config files
add_subdirectory(ups)
# XML project files.
# add_subdirectory(xml)
# Scripts and utilities.
# add_subdirectory(scripts)
# Python modules.
add_subdirectory(python)
# POMS config and script files
add_subdirectory(POMS)
# Validation scripts
# add_subdirectory(validation)
# Tools (programs)
# add_subdirectory(tools)
# FCL module
# add_subdirectory(fclmodule)
# Root batch framework.
# add_subdirectory(root_batch)
# Root analysis modules.
# add_subdirectory(root_analyze)
# Add subdirectory for scripts
add_subdirectory(scripts)
# packaging utility
include(UseCPack)