forked from UCL/STIR
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CMakeLists.txt
339 lines (288 loc) · 10.8 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
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
# This file is part of STIR.
#
# SPDX-License-Identifier: Apache-2.0
#
# See STIR/LICENSE.txt for details
# cmake file for building STIR. See the STIR User's Guide and http://www.cmake.org.
cmake_minimum_required(VERSION 3.1.0)
# avoid warning about WIN32 no longer defined in CYGWIN
set(CMAKE_LEGACY_CYGWIN_WIN32 0)
# enable ccache https://ccache.samba.org/
find_program(CCACHE_PROGRAM ccache)
if(CCACHE_PROGRAM)
set_property(GLOBAL PROPERTY RULE_LAUNCH_COMPILE "${CCACHE_PROGRAM}")
message(STATUS "ccache found, so we will use it.")
endif()
PROJECT(STIR)
SET_PROPERTY(GLOBAL PROPERTY USE_FOLDERS ON)
if (POLICY CMP0025)
cmake_policy(SET CMP0025 NEW) # Compiler Id for Apple Clang is AppleClang, see STIR issue #531
endif()
if(POLICY CMP0074)
cmake_policy(SET CMP0074 NEW) # find_package() uses <PackageName>_ROOT variables
endif()
# add project source to cmake path such that it can use our find_package modules and .cmake files
set(CMAKE_MODULE_PATH "${PROJECT_SOURCE_DIR}/src/cmake;${CMAKE_MODULE_PATH}")
include(src/cmake/SetC++Version.cmake)
UseCXX(11)
# set default build-type to Release
if(NOT CMAKE_BUILD_TYPE)
set(CMAKE_BUILD_TYPE "Release" CACHE STRING "type of build: Debug Release RelWithDebInfo MinSizeRel." FORCE)
endif()
if (CMAKE_CXX_COMPILER_ID)
if((${CMAKE_CXX_COMPILER_ID} MATCHES "AppleClang") OR (${CMAKE_CXX_COMPILER_ID} MATCHES "Clang"))
# Ignore undefined template var warning (see https://github.com/UCL/STIR/issues/126)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wno-undefined-var-template")
if (APPLE)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -stdlib=libc++")
endif()
endif()
else()
message(WARNING "CMAKE_CXX_COMPILER_ID is not set. We are therefore not able to set some options.")
endif()
####### Set Version number etc
set(VERSION_MAJOR 5)
set(VERSION_MINOR 1)
set(VERSION_PATCH 0)
set(VERSION 050100) # only used in STIRConfig.h.in
set(STIR_VERSION
${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_PATCH})
####### Installation directories
# Note: using absolute paths for those variables that are used in STIRConfig.h.in
# Use BeOS locations as in
# https://gitlab.kitware.com/cmake/cmake/blob/master/Source/CMakeInstallDestinations.cmake
# However, use CYGWIN location also elsewhere (as that's what's used in Ubuntu (and others?))
if(BEOS)
set(STIR_DOC_DIR "${CMAKE_INSTALL_PREFIX}/documentation/doc/stir-${VERSION_MAJOR}.${VERSION_MINOR}")
else() #if(CYGWIN)
set(STIR_DOC_DIR "${CMAKE_INSTALL_PREFIX}/share/doc/stir-${VERSION_MAJOR}.${VERSION_MINOR}")
#else()
# set(STIR_DOC_DIR "doc/stir-${VERSION_MAJOR}.${VERSION_MINOR}")
endif()
# TODO append version numbers
set(STIR_DATA_DIR "share/stir")
set(ConfigPackageLocation lib/cmake/)
set(STIR_CONFIG_DIR "${CMAKE_INSTALL_PREFIX}/share/stir/config" CACHE PATH "")
####### External packages
# Note: we need to have the find_package statements in the top-level CMakeLists.txt
# such that we can use it in STIRConfig.cmake.in (see below).
#### we need the boost library from boost.org
set(BOOST_ROOT CACHE PATH "root of Boost")
find_package( Boost 1.36.0 REQUIRED )
#### optional external libraries.
# Listed here such that we know if we should compile extra utilities
option(DISABLE_LLN_MATRIX "disable use of LLN library" OFF)
option(DISABLE_ITK "disable use of ITK library" OFF)
option(DISABLE_AVW "disable use of AVW library" OFF)
option(DISABLE_RDF "disable use of GE RDF library" OFF)
option(DISABLE_HDF5 "disable use of HDF5 libraries" OFF)
option(DISABLE_STIR_LOCAL "disable use of LOCAL extensions to STIR" OFF)
option(DISABLE_CERN_ROOT "disable use of Cern ROOT libraries" OFF)
option(DISABLE_NLOHMANN_JSON "disable use of nlohmann JSON libraries" OFF)
option(STIR_ENABLE_EXPERIMENTAL "disable use of STIR experimental code" OFF) # disable by default
option(DISABLE_NiftyPET_PROJECTOR "disable use of NiftyPET projector" OFF)
option(DISABLE_Parallelproj_PROJECTOR "disable use of Parallelproj projector" OFF)
OPTION(DOWNLOAD_ZENODO_TEST_DATA "download zenodo data for tests" OFF)
option(DISABLE_UPENN "disable use of UPENN filetypes" OFF)
if(NOT DISABLE_ITK)
# See if we can find a compiled version of ITK (http://www.itk.org/)
find_package(ITK 4.9 CONFIG)
if (ITK_FOUND)
include(${ITK_USE_FILE})
endif()
endif()
if(NOT DISABLE_LLN_MATRIX)
find_package(LLN)
endif()
if(NOT DISABLE_CERN_ROOT)
find_package(CERN_ROOT)
if (CERN_ROOT_FOUND)
message(STATUS "ROOT Version: ${CERN_ROOT_VERSION}")
if (${CERN_ROOT_VERSION} VERSION_GREATER 6.23.99)
message(STATUS "ROOT Version is >= 6.24. Setting the minimum CXX version to 14.")
UseCXX(14)
endif()
endif()
endif()
if(NOT DISABLE_AVW)
find_package(AVW)
endif()
if(NOT DISABLE_RDF)
find_package(RDF)
endif()
if(NOT DISABLE_HDF5)
find_package(HDF5 COMPONENTS CXX)
endif()
if(NOT DISABLE_NLOHMANN_JSON)
find_package(nlohmann_json 3.2.0 CONFIG)# QUIET)
if (nlohmann_json_FOUND)
message(STATUS "nlohmann JSON library ${nlohmann_json_VERSION} found.")
set(HAVE_JSON ON)
else()
message(STATUS "nlohmann JSON library not found. Radionuclide support will be minimal.")
endif()
endif()
if(NOT DISABLE_UPENN)
find_package(JANSSON)
if(JANSSON_FOUND)
find_package(ZLIB)
if(ZLIB_FOUND)
find_package(UPENN)
if (UPENN_FOUND)
message(STATUS "UPENN libary found.")
#set(HAVE_UPENN ON)
else()
message(STATUS "UPENN library not found. Try and set the DIR manually.")
endif()
else()
message(STATUS "UPENN library needs Zlib")
endif()
else()
message(STATUS "UPENN library needs Jansson")
endif()
endif()
# Legacy options
option(STIR_PROJECTORS_AS_V3 "Enable STIR version 3 legacy code" OFF)
option(STIR_LEGACY_IGNORE_VIEW_OFFSET "Ignore using scanner view-offset (or intrinsic azimuthal tilt), as in STIR 4 or earlier" OFF)
option(STIR_ROOT_ROTATION_AS_V4 "Ignore the changes to the ROOT rotation introduced in STIR version 5" OFF)
# NiftyPET projector
if(NOT DISABLE_NiftyPET_PROJECTOR OR NOT DISABLE_Parallelproj_PROJECTOR)
find_package(CUDAToolkit QUIET)
endif()
if(NOT DISABLE_NiftyPET_PROJECTOR)
if (CUDAToolkit_FOUND)
find_package(NiftyPET)
if (NiftyPET_FOUND)
set(STIR_WITH_NiftyPET_PROJECTOR ON)
endif()
endif()
endif()
if (STIR_WITH_NiftyPET_PROJECTOR)
message(STATUS "NiftyPET projector support enabled.")
else()
message(STATUS "NiftyPET projector support disabled.")
endif()
# Parallelproj
if(NOT DISABLE_Parallelproj_PROJECTOR)
find_package(parallelproj 1.0.1 CONFIG)
if (parallelproj_FOUND)
set(STIR_WITH_Parallelproj_PROJECTOR ON)
if (parallelproj_built_with_CUDA)
message(STATUS "Found parallelproj ${parallelproj_VERSION} (will use its CUDA support)")
else()
message(STATUS "Found parallelproj ${parallelproj_VERSION} (but using its OpenMP version as it wasn't built with CUDA)")
endif()
if (parallelproj_VERSION VERSION_LESS 1.0.1)
message(STATUS "If the above parallelproj info looks incorrect, upgrade it to at least 1.0.1 (but 1.2.13 or later is recommended)")
endif()
endif()
endif()
if (STIR_WITH_Parallelproj_PROJECTOR)
message(STATUS "Parallelproj projector support enabled.")
else()
message(STATUS "Parallelproj projector support disabled or not available.")
endif()
#### enable support for ctest
ENABLE_TESTING()
ADD_SUBDIRECTORY(src)
ADD_SUBDIRECTORY(scripts)
#### export configuration for external projects that want to use STIR
# See https://cmake.org/cmake/help/v3.0/manual/cmake-packages.7.html
# Also https://rix0r.nl/blog/2015/08/13/cmake-guide/
# https://coderwall.com/p/qej45g/use-cmake-enabled-libraries-in-your-cmake-project-iii
include(CMakePackageConfigHelpers)
WRITE_BASIC_PACKAGE_VERSION_FILE(${CMAKE_CURRENT_BINARY_DIR}/STIRConfigVersion.cmake
VERSION ${STIR_VERSION}
COMPATIBILITY SameMajorVersion )
# create STIRTargets*.cmake files for importing the build-tree (disabled for now)
#export(EXPORT STIRTargets
# FILE "${CMAKE_BINARY_DIR}/STIRTargets.cmake"
#)
## create files specific to the "installed" version
# Set STIR_INCLUDE_DIRS before exporting such that it will refer to
# the installed files, not the source.
set (STIR_INCLUDE_DIRS "include")
# Older CMake cannot import or export object libraries. So we have to export
# the sources and tell the user to explicitly use STIR_REGISTRIES.
# This will be set to either a list of source files, or a list of object files.
# See STIRConfig.cmake.in on how we cope with this
if (CMAKE_VERSION VERSION_LESS 3.12)
message(WARNING "Your CMake version is older than 3.12. The STIR_REGISTRIES
will be exported as source files only. Please upgrade CMake!")
else()
install(TARGETS stir_registries EXPORT STIRTargets DESTINATION lib)
endif()
# install the registry sources for older CMake versions
install(FILES ${STIR_REGISTRIES} DESTINATION ${STIR_DATA_DIR}/src)
# set STIR_REGISTRIES to this location before export
# first create a new variable.
set(INSTALLED_STIR_REGISTRIES)
foreach(r ${STIR_REGISTRIES})
# get filename without directory
get_filename_component(r_filename ${r} NAME)
# append this with installed location
# (note: have to use CMAKE_INSTALL_PREFIX for CONFIGURE_PACKAGE_CONFIG_FILE to
# make the variable relocatable)
list(APPEND INSTALLED_STIR_REGISTRIES "${CMAKE_INSTALL_PREFIX}/${STIR_DATA_DIR}/src/${r_filename}")
endforeach()
set(STIR_REGISTRIES ${INSTALLED_STIR_REGISTRIES})
# New create STIRConfig.cmake
CONFIGURE_PACKAGE_CONFIG_FILE(
src/cmake/STIRConfig.cmake.in
"${CMAKE_BINARY_DIR}/STIRConfig.cmake"
INSTALL_DESTINATION "${ConfigPackageLocation}"
PATH_VARS STIR_INCLUDE_DIRS STIR_REGISTRIES # relocatable variables
)
# create and install STIRTargets*.cmake for the installation-tree
# Note: we cannot have "NAMESPACE stir::" as we would have
# to prefix all libraries in STIR_LIBRARIES somehow.
install(EXPORT STIRTargets
DESTINATION "${ConfigPackageLocation}"
)
# install STIRConfig*.cmake
install(
FILES
"${CMAKE_BINARY_DIR}/STIRConfig.cmake"
"${CMAKE_BINARY_DIR}/STIRConfigVersion.cmake"
DESTINATION "${ConfigPackageLocation}"
)
# install our own Find* cmake files
install(
DIRECTORY
"${PROJECT_SOURCE_DIR}/src/cmake/"
DESTINATION "${ConfigPackageLocation}"
FILES_MATCHING PATTERN "Find*"
)
# install examples
# note that location needs to be consistent with get_STIR_examples_dir()
install(
DIRECTORY
examples
USE_SOURCE_PERMISSIONS
COMPONENT DOC
DESTINATION "${STIR_DOC_DIR}"
FILES_MATCHING
PATTERN *
PATTERN my_* EXCLUDE
PATTERN *~ EXCLUDE
PATTERN *.bak EXCLUDE
PATTERN *.log EXCLUDE
)
# install documentation
install(
DIRECTORY
documentation
COMPONENT DOC
DESTINATION "${STIR_DOC_DIR}"
FILES_MATCHING
PATTERN *
PATTERN *.aux EXCLUDE
PATTERN *.dvi EXCLUDE
PATTERN *.out EXCLUDE
PATTERN *.toc EXCLUDE
PATTERN *~ EXCLUDE
PATTERN *.bak EXCLUDE
PATTERN *.log EXCLUDE
)
# COMPONENT
# Devel