-
Notifications
You must be signed in to change notification settings - Fork 26
/
CMakeLists.txt
208 lines (170 loc) · 6.92 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
cmake_minimum_required(VERSION 3.1)
set(CMAKE_CXX_STANDARD 17)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
set(CMAKE_CXX_EXTENSIONS OFF)
if(CMAKE_VERSION VERSION_LESS "3.7.0")
set(CMAKE_INCLUDE_CURRENT_DIR ON)
endif()
project(cmstkmodlab VERSION 2.3.0)
execute_process(COMMAND bash -c "git describe --dirty --always --tags" OUTPUT_VARIABLE GIT_DESCRIBE)
string(REGEX REPLACE "\n$" "" GIT_DESCRIBE "${GIT_DESCRIBE}")
message("")
message("############################################")
message("")
message(" cmstkmodlab")
message("")
message(" version: ${GIT_DESCRIBE}")
message("")
message("############################################")
message("")
set(CMAKE_MODULE_PATH ${PROJECT_SOURCE_DIR}/cmake)
set(basepath ${PROJECT_SOURCE_DIR})
# Configure the installation prefix to allow both local as system-wide installation
IF(CMAKE_INSTALL_PREFIX_INITIALIZED_TO_DEFAULT)
SET(CMAKE_INSTALL_PREFIX
"${PROJECT_SOURCE_DIR}"
CACHE PATH "Prefix prepended to install directories" FORCE)
ENDIF()
# Set up the RPATH so executables find the libraries even when installed in non-default location
SET(CMAKE_MACOSX_RPATH TRUE)
SET(CMAKE_SKIP_BUILD_RPATH FALSE)
SET(CMAKE_SKIP_INSTALL_RPATH FALSE)
SET(CMAKE_BUILD_WITH_INSTALL_RPATH FALSE)
SET(CMAKE_INSTALL_RPATH ${CMAKE_INSTALL_FULL_LIBDIR})
# Set default build type
IF(NOT CMAKE_BUILD_TYPE)
SET(CMAKE_BUILD_TYPE
"RelWithDebInfo"
CACHE STRING "Choose the type of build, options are: Debug Release RelWithDebInfo MinSizeRel." FORCE)
ENDIF(NOT CMAKE_BUILD_TYPE)
# Add the automatically determined parts of the RPATH which point to directories outside the build tree to the install RPATH
SET(CMAKE_INSTALL_RPATH_USE_LINK_PATH TRUE)
# The RPATH to be used when installing, but only if it's not a system directory
LIST(FIND CMAKE_PLATFORM_IMPLICIT_LINK_DIRECTORIES "${CMAKE_INSTALL_PREFIX}/lib" IsSystemDir)
IF("${IsSystemDir}" STREQUAL "-1")
SET(CMAKE_INSTALL_RPATH "${CMAKE_INSTALL_PREFIX}/lib:${CMAKE_SOURCE_DIR}/devices/lib:${CMAKE_SOURCE_DIR}/external/lib")
ENDIF("${IsSystemDir}" STREQUAL "-1")
find_package(PkgConfig REQUIRED)
add_compile_definitions(__${CMAKE_HOST_SYSTEM_NAME}__)
if(CMAKE_HOST_SYSTEM_NAME STREQUAL "Darwin")
add_compile_definitions(DARWIN)
message(STATUS "Building on MacOS system")
option(CMSTKMODLAB_FAKEIO "Build with fake IO support" ON)
option(CMSTKMODLAB_FAKEUEYE "Build with fake uEYE support" ON)
else()
option(CMSTKMODLAB_FAKEIO "Build with fake IO support" OFF)
option(CMSTKMODLAB_FAKEUEYE "Build with fake uEYE support" OFF)
endif()
if(CMSTKMODLAB_FAKEIO)
message(STATUS "Fake IO support: ON")
add_compile_definitions(USE_FAKEIO)
else()
message(STATUS "Fake IO support: OFF")
endif()
if(CMSTKMODLAB_FAKEUEYE)
message(STATUS "Fake uEYE support: ON")
add_compile_definitions(NOUEYE)
else()
message(STATUS "Fake uEYE support: OFF")
endif()
find_package(CURL)
if(CURL_FOUND)
INCLUDE_DIRECTORIES(${CURL_INCLUDE_DIR})
message(STATUS "Found libcurl")
else(CURL_FOUND)
MESSAGE(FATAL_ERROR "Could not find the CURL library and development files.")
endif(CURL_FOUND)
set(CMAKE_AUTOMOC ON)
find_package(Qt5 5.14 COMPONENTS Core Gui Widgets OpenGL Script Xml Svg Network Charts REQUIRED)
option(CMSTKMODLAB_MARTA "Build with support for MARTA CO2 chiller" OFF)
if(CMSTKMODLAB_MARTA)
message(STATUS "Support for MARTA CO2 chiller: ON")
pkg_check_modules(MODBUS REQUIRED IMPORTED_TARGET libmodbus)
else()
message(STATUS "Support for MARTA CO2 chiller: OFF")
add_compile_definitions(NOMARTA)
endif()
option(CMSTKMODLAB_THERMO1 "Build with support for version 1 of thermal test setup" OFF)
if(CMSTKMODLAB_THERMO1)
message(STATUS "Support for version 1 of thermal test setup: ON")
include(FindQWT)
else()
message(STATUS "Support for version 1 of thermal test setup: OFF")
endif()
option(CMSTKMODLAB_THERMO2 "Build with support for version 2 of thermal test setup" OFF)
if(CMSTKMODLAB_THERMO2)
message(STATUS "Support for version 2 of thermal test setup: ON")
else()
message(STATUS "Support for version 2 of thermal test setup: OFF")
endif()
option(CMSTKMODLAB_PUMPSTATION "Build with support for pump station" OFF)
option(CMSTKMODLAB_PLASMA "Build with support for plasma cleaner test setup" OFF)
option(CMSTKMODLAB_DEFO "Build with support for defo setup" OFF)
if(CMSTKMODLAB_THERMO1 OR CMSTKMODLAB_THERMO2 OR CMSTKMODLAB_PUMPSTATION OR CMSTKMODLAB_PLASMA OR CMSTKMODLAB_DEFO)
set(ENV{ROOT_DIR} ENV{ROOTSYS}/cmake)
find_package(ROOT 6.16 REQUIRED)
message(STATUS "Found ROOT (${ROOT_VERSION})")
endif()
if(CMSTKMODLAB_THERMO1 OR CMSTKMODLAB_THERMO2)
pkg_check_modules(GSL REQUIRED IMPORTED_TARGET gsl)
add_subdirectory(thermo)
endif()
if(CMSTKMODLAB_PUMPSTATION)
message(STATUS "Support for pump station: ON")
add_subdirectory(pumpstation)
else()
message(STATUS "Support for pump station: OFF")
endif()
if(CMSTKMODLAB_ASSEMBLY OR CMSTKMODLAB_DEFO)
pkg_check_modules(LIBGPHOTO2 REQUIRED IMPORTED_TARGET libgphoto2)
if(CMAKE_HOST_SYSTEM_NAME STREQUAL "Darwin")
find_package(OpenCV REQUIRED)
else()
pkg_check_modules(OPENCV4 REQUIRED IMPORTED_TARGET opencv4)
endif()
pkg_check_modules(EXIV2 REQUIRED IMPORTED_TARGET exiv2)
endif()
if(CMSTKMODLAB_ASSEMBLY AND NOT CMSTKMODLAB_FAKEUEYE)
include(Findueyeapi)
endif()
option(CMSTKMODLAB_ASSEMBLY "Build with support for PS automated assembly" OFF)
if(CMSTKMODLAB_ASSEMBLY)
message(STATUS "Support for PS automated assembly: ON")
add_subdirectory(assembly)
else()
message(STATUS "Support for PS automated assembly: OFF")
endif()
if(CMSTKMODLAB_PLASMA)
message(STATUS "Support for plasma cleaner test setup: ON")
add_subdirectory(plasma)
else()
message(STATUS "Support for plasma cleaner test setup: OFF")
endif()
if(CMSTKMODLAB_DEFO)
message(STATUS "Support for defo setup: ON")
include(FindQWT)
add_subdirectory(defo)
else()
message(STATUS "Support for defo setup: OFF")
endif()
option(CMSTKMODLAB_PYTHON "Build python device modules" OFF)
if(CMSTKMODLAB_PYTHON)
message(STATUS "Python device modules: ON")
find_package(Python3 3.8 COMPONENTS Development REQUIRED)
find_package(Boost COMPONENTS python38 REQUIRED)
add_subdirectory(python)
else()
message(STATUS "Python device modules: OFF")
endif()
configure_file(tkmodlabenv.sh.in tkmodlabenv.sh)
configure_file(tkmodlabenv.csh.in tkmodlabenv.csh)
add_subdirectory(external)
add_subdirectory(devices)
add_subdirectory(tools)
add_subdirectory(common)
add_subdirectory(common_test)
enable_testing()
add_test(NAME testApplicationConfig COMMAND testApplicationConfig)
add_test(NAME testRingbuffer COMMAND testRingbuffer)
add_test(NAME testFifo COMMAND testFifo)
add_test(NAME testHistoryFifo COMMAND testHistoryFifo)