forked from inviwo/inviwo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CMakeLists.txt
242 lines (205 loc) · 8.67 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
#################################################################################
#
# Inviwo - Interactive Visualization Workshop
#
# Copyright (c) 2012-2018 Inviwo Foundation
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are met:
#
# 1. Redistributions of source code must retain the above copyright notice, this
# list of conditions and the following disclaimer.
# 2. Redistributions in binary form must reproduce the above copyright notice,
# this list of conditions and the following disclaimer in the documentation
# and/or other materials provided with the distribution.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
# DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
# ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
# (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
# ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
# SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#
#################################################################################
cmake_minimum_required(VERSION 3.2.0)
cmake_policy(VERSION 3.2.0)
if(POLICY CMP0042)
cmake_policy(SET CMP0042 NEW) # MacOSX rpath policy.
endif()
if(POLICY CMP0043)
# The New bahaviour is to ignore COMPILE_DEFINITIONS_<CONFIG>
# and used COMPILE_DEFINITIONS with generator expressions"
cmake_policy(SET CMP0043 NEW)
endif()
if(POLICY CMP0046)
# Warn when adding a missing dependency using add_dependencies()
cmake_policy(SET CMP0046 NEW)
endif()
if(POLICY CMP0051)
# include TARGET_OBJECTS expressions in a target's SOURCES property
cmake_policy(SET CMP0051 NEW)
endif()
if(POLICY CMP0054)
# only interpret if() arguments as variables or keywords when unquoted
cmake_policy(SET CMP0054 NEW)
endif()
if(POLICY CMP0057)
# CMake 3.3 adds support for the new IN_LIST operator.
cmake_policy(SET CMP0057 NEW)
endif()
if(POLICY CMP0066)
# Honor per-config flags in ``try_compile()`` source-file signature.
cmake_policy(SET CMP0066 NEW)
endif()
string(TIMESTAMP timeStart "%Y-%m-%d %H:%M:%S")
# option for setting the project/solution name of the Inviwo project
set(IVW_PROJECT_NAME "inviwo-projects" CACHE STRING "Project/Solution name (default: inviwo-projects)")
if(IVW_PROJECT_NAME)
project(${IVW_PROJECT_NAME})
else()
project(inviwo-projects)
endif()
# Build
option(BUILD_SHARED_LIBS "Build shared libs, else static libs" ON)
# Needed for find_package(PythonLibsNew 3), which is an improved version of CMake shipped find_pythonLibs
set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${CMAKE_SOURCE_DIR}/ext/pybind11/tools")
# Make sure we do look for python 3 here, before it is done in any subdirectory or external library.
# If we do not specify version number on our first call to find_package(PythonLibs) it returns the
# first python version that is found on the system and then set the PYTHON_FOUND variable, this
# version may be 2.x and not 3.x and later when we find_package(PythonLibsNew 3) (or find_package(PythonLibs 3))
# it will detected that PYTHON_FOUND is set and reuse the paths found before and not look for python
# again resulting in Python 2.x binaries will be used.
set(PythonLibsNew_FIND_VERSION 3)
set(Python_ADDITIONAL_VERSIONS 3.5 3.6 3.7 3.8 3.9)
find_package(PythonLibsNew 3)
include(cmake/verifysubmodules.cmake)
verify_submodules("${CMAKE_CURRENT_LIST_DIR}/.gitmodules")
include(cmake/globalconfig.cmake)
option(IVW_INTEGRATION_TESTS "Build inviwo integration test" ON)
#--------------------------------------------------------------------
# Applications/Qt
option(IVW_QT_APPLICATION "Build Inviwo Qt network editor application" ON)
option(IVW_QT_APPLICATION_BASE "Build base for Qt applications. Used by Inviwo Qt network editor and Qt minimal application" ON)
# Try to find qt and add it if it is not already in CMAKE_PREFIX_PATH
if(NOT "${CMAKE_PREFIX_PATH}" MATCHES "[Qq][Tt]")
if(NOT QT_QMAKE_EXECUTABLE)
find_program(QT_QMAKE_EXECUTABLE_FINDQT NAMES qmake qmake4 qmake-qt4 qmake5 qmake-qt5
PATHS "${QT_SEARCH_PATH}/bin" "$ENV{QTDIR}/bin")
set(QT_QMAKE_EXECUTABLE ${QT_QMAKE_EXECUTABLE_FINDQT} CACHE PATH "Qt qmake program.")
endif()
if(QT_QMAKE_EXECUTABLE)
execute_process(COMMAND ${QT_QMAKE_EXECUTABLE} -query "QT_INSTALL_PREFIX" OUTPUT_VARIABLE QT5_PATH OUTPUT_STRIP_TRAILING_WHITESPACE)
else()
if(APPLE) # On OSX look for the usual brew installation.
foreach(path "/usr/local/Cellar/qt" "/usr/local/Cellar/qt5")
if(EXISTS ${path})
file(GLOB qtversions RELATIVE "${path}/" "${path}/?.?.*")
list(LENGTH qtversions len)
if(${len} GREATER 0)
list(GET qtversions -1 qtlatest)
if(EXISTS "${path}/${qtlatest}")
set(QT5_PATH "${path}/${qtlatest}")
break()
endif()
endif()
endif()
endforeach()
endif()
endif()
if(QT5_PATH)
ivw_debug_message(STATUS "Found qt at: ${QT5_PATH}")
list(APPEND CMAKE_PREFIX_PATH ${QT5_PATH})
endif()
endif()
#--------------------------------------------------------------------
# Add external libraries.
#
# Dependencies between libraries are solved using the given order
# Note: We prefer building dependencies our self to using find_library,
# since it does not necessarily give you the dll for packaging.
# It also ensures that we are in control of the used version
# and is built using the same, Inviwo, settings.
add_subdirectory(ext/zlib-1.2.11) # Defines target ZLIB::ZLIB
add_subdirectory(ext/libpng) # Defines target inviwo::libpng and libpng
add_subdirectory(ext/libjpeg) # Defines target inviwo::libjpeg and libjpeg
add_subdirectory(ext/tiff) # Defines target inviwo::tiff and tiff
add_subdirectory(ext/flags)
add_subdirectory(ext/glm)
add_subdirectory(ext/ticpp)
add_subdirectory(ext/gtest)
add_subdirectory(ext/benchmark)
add_subdirectory(ext/warn)
add_subdirectory(ext/tclap)
add_subdirectory(ext/tinydir)
add_subdirectory(ext/half)
add_subdirectory(ext/utf)
option(IVW_SIGAR "Use sigar to detect system capabilities" ON)
if(IVW_SIGAR)
add_subdirectory(ext/sigar)
endif()
#--------------------------------------------------------------------
# Add stackwalker for windows for stack traces in the log
if(WIN32)
add_subdirectory(ext/stackwalker)
endif()
#--------------------------------------------------------------------
# Add default modules
set(ivw_default_modules
"Assimp"
"Base"
"BaseGL"
"CImg"
"FontRendering"
"OpenGL"
"OpenGLQt"
"PVM"
"Nifti"
"QtWidgets"
"EigenUtils"
"BrushingAndLinking"
"VectorFieldVisualization"
"VectorFieldVisualizationGL"
"PostProcessing"
"Nifti"
CACHE INTERNAL "Default Inviwo Modules"
)
if(PYTHONLIBS_FOUND)
list(APPEND ivw_default_modules "Python3" "Python3Qt")
endif()
find_package(OpenCL QUIET)
if(OPENCL_FOUND)
list(APPEND ivw_default_modules "OpenCL" "BaseCL")
endif()
ivw_add_build_module_dependency(GLFW IVW_INTEGRATION_TESTS)
ivw_add_build_module_dependency(BASE IVW_INTEGRATION_TESTS)
#--------------------------------------------------------------------
# Add modules
ivw_register_modules(all_modules)
#--------------------------------------------------------------------
# Add Qt
add_subdirectory(src/qt)
#--------------------------------------------------------------------
# Add applications
add_subdirectory(apps)
#--------------------------------------------------------------------
# Add external projects
ivw_add_external_projects()
#--------------------------------------------------------------------
# Add integration tests project
if(IVW_INTEGRATION_TESTS)
add_subdirectory(tests/integrationtests)
endif()
#--------------------------------------------------------------------
# Package creation
include(cmake/packaging.cmake)
#--------------------------------------------------------------------
# Generate Doxygen setup.
include(tools/doxygen/doxygen.cmake)
make_doxygen_target(all_modules)
string(TIMESTAMP time "%Y-%m-%d %H:%M:%S")
message(STATUS "Configure started at ${timeStart} and ended at ${time}")