-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCMakeLists.txt
67 lines (50 loc) · 1.72 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
# ======================================================================
# artdaq_runcontrol_gui main build file
#
# cd .../path/to/build/directory
# source .../path/to/artdaq_runcontrol_gui/ups/setup_for_development
# cmake [-DCMAKE_INSTALL_PREFIX=/install/path]
# -DCMAKE_BUILD_TYPE=$CETPKG_TYPE
# $CETPKG_SOURCE
# make
# make test
# make install
# make package (builds distribution tarfile)
# buildtool
# ======================================================================
# use cmake 3.7 or later
cmake_minimum_required (VERSION 3.7)
project(artdaq-runcontrol-gui)
# cetbuildtools contains our cmake modules
SET ( CETBUILDTOOLS_VERSION $ENV{CETBUILDTOOLS_VERSION} )
IF (NOT CETBUILDTOOLS_VERSION)
MESSAGE (FATAL_ERROR "ERROR: setup cetbuildtools to get the cmake modules")
ENDIF()
set(CMAKE_MODULE_PATH
$ENV{CETBUILDTOOLS_DIR}/Modules
${CMAKE_MODULE_PATH})
include(CetCMakeEnv)
cet_cmake_env()
cet_set_compiler_flags(DIAGS VIGILANT
WERROR
NO_UNDEFINED
EXTRA_FLAGS -Wall -Wextra -pedantic -Wconversion
)
SET ( SANITIZE_ADDRESS $ENV{SANITIZE_ADDRESS} )
IF ( SANITIZE_ADDRESS )
MESSAGE (STATUS "Enable -fsanitize=address -Wno-unused-command-line-argument -fno-omit-frame-pointer")
cet_add_compiler_flags(-fsanitize=address -Wno-unused-command-line-argument -fno-omit-frame-pointer)
ENDIF()
cet_report_compiler_flags()
# these are minimum required versions, not the actual product versions
#find_ups_product( TRACE v3_09_01 )
find_ups_product( cetbuildtools v5_08_01 )
set(TOP_CMAKE_BINARY_DIR ${CMAKE_CURRENT_BINARY_DIR})
include(CetTest)
# source
add_subdirectory(artdaq-runcontrol)
# add_subdirectory(test)
# ups - table and config files
add_subdirectory(ups)
# packaging utility
include(UseCPack)