-
Notifications
You must be signed in to change notification settings - Fork 0
/
CMakeLists.txt
260 lines (211 loc) · 8.16 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
########################################################################################
#
# This is the install script for ILLIXR
# This will compile the main ILLIXR binary along with any requested plugins.
#
# See the documentation at https://illixr.github.io/ILLIXR/getting_started/
# for complete build instructions.#
#
########################################################################################
cmake_minimum_required(VERSION 3.16)
set(CMAKE_VERBOSE_MAKEFILE True)
if (POLICY CMP0048)
cmake_policy(SET CMP0048 NEW)
endif (POLICY CMP0048)
if (POLICY CMP0135)
cmake_policy(SET CMP0135 NEW)
endif()
if (POLICY CMP0077)
cmake_policy(SET CMP0077 NEW)
endif()
set(BUILDING_ILLIXR Yes)
set(PACKAGE_NAME "ILLIXR")
set(PACKAGE_STRING "ILLIXR 3.2.0")
set(PACKAGE_VERSION_MAJOR "3")
set(PACKAGE_VERSION_MINOR "2")
set(PACKAGE_VERSION_PATCH "0")
set(PACKAGE_VERSION_LABEL "")
# determine the Linux vendor, if it is CentOS then we must rebuild OpenCV to include all the needed components
if(UNIX)
execute_process(COMMAND bash -c "awk -F= '/^ID=/{print $2}' /etc/os-release | tr -d '\n' | tr -d '\"'" OUTPUT_VARIABLE OS_FLAVOR)
message("Found OS: ${OS_FLAVOR}")
string(TOLOWER "${OS_FLAVOR}" OS_LOWER)
if(OS_LOWER STREQUAL "centos")
set(HAVE_CENTOS Yes)
else()
set(HAVE_CENTOS No)
endif()
elseif(WIN32)
message(FATAL_ERROR "Windows is currently not supported")
elseif(APPLE)
message(FATAL_ERROR "MacOS is currently not supported")
else()
message(FATAL_ERROR "Unknown operating system")
endif()
if(PACKAGE_VERSION_LABEL)
set(PACKAGE_VERSION "${PACKAGE_VERSION_MAJOR}.${PACKAGE_VERSION_MINOR}.${PACKAGE_VERSION_PATCH}-${PACKAGE_VERSION_LABEL}")
else()
set(PACKAGE_VERSION "${PACKAGE_VERSION_MAJOR}.${PACKAGE_VERSION_MINOR}.${PACKAGE_VERSION_PATCH}")
endif()
include(ExternalProject)
project(ILLIXR VERSION 3.2.0)
set(CMAKE_CXX_STANDARD 17)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
add_definitions(-DGLSL_VERSION="330")
set(CMAKE_CXX_FLAGS_DEBUG "-ggdb -Wall -Wextra -rdynamic -Wno-attributes -Wno-unknown-pragmas -fPIC")
set(CMAKE_CXX_FLAGS_RELEASE "-O3 -DNDEBUG -Wall -Wextra -Wno-attributes -Wno-unknown-pragmas -fPIC")
set(CMAKE_CXX_FLAGS_RELWITHDEBINFO "-ggdb -O3 -Wall -Wextra -Wno-attributes -Wno-unknown-pragmas -fPIC")
# needed to generate runtime scripts
set(MONADO_RUNTIME_VK "")
set(MONADO_RUNTIME_GL "")
set(OPENXR_RUNTIME "")
set(OPENXR_PLUGINS "")
# set the CMake search path to include the local files
set(CMAKE_MODULE_PATH "${PROJECT_SOURCE_DIR}/cmake;${CMAKE_MODULE_PATH}")
option(COLOR_OUTPUT "Produce color output to the screen" ON)
option(DATA_FILE "The data file to get" ON)
set(DATA_FILE "http://robotics.ethz.ch/~asl-datasets/ijrr_euroc_mav_dataset/vicon_room1/V1_02_medium/V1_02_medium.zip")
option(BUILD_DOCS "Build documentation" OFF)
option(USE_MONADO "Build for monado use" OFF)
include(cmake/HelperFunctions.cmake)
set(VISUALIZER "" CACHE STRING "")
set(VISUALIZER_TO_USE "ALL" CACHE INTERNAL "")
if(VISUALIZER)
string(TOUPPER ${VISUALIZER} VISUALIZER)
set(VISUALIZER_TO_USE ${VISUALIZER} CACHE INTERNAL "")
endif()
generate_yaml()
check_plugins()
set(CORE_PLUGINS OFF)
set(RT_SLAM_PLUGINS OFF)
if(YAML_FILE)
read_yaml(${YAML_FILE})
if(LOCAL_BUILD_FLAGS)
add_definitions("${LOCAL_BUILD_FLAGS}")
endif()
endif()
set(ILLIXR_BUILD_SUFFIX "")
if(CMAKE_BUILD_TYPE STREQUAL "")
message(NOTICE "No build type specified, defaulting to Release")
set(CMAKE_BUILD_TYPE "Release")
endif()
# the plugin library names will depend on the build type
string(TOLOWER "${CMAKE_BUILD_TYPE}" lower_type)
if(lower_type MATCHES "debug")
set(DO_DEBUG Yes)
set(ILLIXR_BUILD_SUFFIX ".dbg")
elseif(lower_type MATCHES "release")
set(ILLIXR_BUILD_SUFFIX ".opt")
elseif(lower_type MATCHES "relwithdebinfo")
set(DO_DEBUG Yes)
set(ILLIXR_BUILD_SUFFIX ".optdbg")
endif()
set(CMAKE_PREFIX_PATH "${CMAKE_INSTALL_PREFIX}/lib/cmake ${CMAKE_INSTALL_PREFIX}/lib64/cmake")
set(ENV{PKG_CONFIG_PATH} "${CMAKE_INSTALL_PREFIX}/lib/pkgconfig:${CMAKE_INSTALL_PREFIX}/lib64/pkgconfig")
link_directories(BEFORE ${CMAKE_INSTALL_PREFIX}/lib ${CMAKE_INSTALL_PREFIX}/lib64)
include_directories(BEFORE ${CMAKE_SOURCE_DIR}/include)
find_package(PkgConfig REQUIRED)
if("${CMAKE_SOURCE_DIR}" STREQUAL "${CMAKE_BINARY_DIR}")
message(FATAL_ERROR "In-source build prohibited.")
endif("${CMAKE_SOURCE_DIR}" STREQUAL "${CMAKE_BINARY_DIR}")
set(CMAKE_MODULE_PATH "${CMAKE_MODULE_PATH} ${PROJECT_SOURCE_DIR}/cmake")
add_definitions(-DILLIXR_BUILD_SUFFIX=${ILLIXR_BUILD_SUFFIX})
##############
# dependencies
##############
set(EXTERNAL_LIBRARIES "")
##############
# opencv
#
# If building on centos system, opencv must be built from scratch to get the viz module
# which is not supplied by the centos repos
##############
set(BUILDING_OPENCV No)
set(OpenCV_DEP_STR "")
if(HAVE_CENTOS)
set(INTERNAL_OPENCV ${CMAKE_INSTALL_PREFIX}/lib/cmake/opencv4)
# see if it has been built yet
find_package(OpenCV QUIET PATHS ${INTERNAL_OPENCV} NO_DEFAULT_PATH NO_CMAKE_ENVIRONMENT_PATH NO_SYSTEM_ENVIRONMENT_PATH NO_CMAKE_PACKAGE_REGISTRY NO_CMAKE_SYSTEM_PATH NO_CMAKE_SYSTEM_PACKAGE_REGISTRY)
if(NOT OpenCV_FOUND OR NOT OPENCV_VIZ_FOUND)
message("Building OpenCV")
include(cmake/GetOpenCV_Viz.cmake)
set(OpenCV_DEP_STR OpenCV_Viz)
set(INTERNAL_OPENCV ${OpenCV_DIR})
set(BUILD_OPENCV Yes)
endif()
else()
find_package(OpenCV 4 REQUIRED)
endif()
find_package(GLEW REQUIRED)
pkg_check_modules(glu REQUIRED glu)
find_package(SQLite3 REQUIRED)
find_package(X11 REQUIRED)
pkg_check_modules(gl REQUIRED gl)
find_package(Eigen3 REQUIRED)
#############
# plugin specific dependencies that are used by several plugins
#############
find_package(Git REQUIRED)
find_package(Boost REQUIRED COMPONENTS filesystem serialization)
find_package(spdlog REQUIRED)
set(THREADS_PREFER_PTHREAD_FLAG ON)
find_package(Threads)
include(src/CMakeLists.txt)
# set any plugins that are being built
set(FULL_PLUGIN_LIST "")
foreach(ITEM IN LISTS PLUGIN_LIST VISUALIZER_LIST)
string(TOUPPER "USE_${ITEM}" ITEM_UPPER)
string(TOLOWER ${ITEM} ITEM_LOWER)
list(APPEND FULL_PLUGIN_LIST ${ITEM})
if(${ITEM_UPPER})
list(APPEND OPENXR_PLUGINS ${ITEM_LOWER})
string(REPLACE "." "/" ITEM_LOWER "${ITEM_LOWER}")
message("Adding plugins/${ITEM_LOWER}")
add_subdirectory(plugins/${ITEM_LOWER})
endif()
unset(ITEM_LOWER)
unset(ITEM_UPPER)
endforeach()
list(SORT FULL_PLUGIN_LIST COMPARE STRING CASE INSENSITIVE ORDER ASCENDING)
set(FULL_PLUGIN_LIST_STRING "")
foreach(PLUGIN_NAME IN LISTS FULL_PLUGIN_LIST)
set(FULL_PLUGIN_LIST_STRING "${FULL_PLUGIN_LIST_STRING}\n- ${PLUGIN_NAME}")
endforeach()
set(CURRENT_BUILD_DIR "${CMAKE_CURRENT_BINARY_DIR}" CACHE INTERNAL "")
# set up documentaiton build
add_subdirectory(docs)
# deal with the data file if there is one
if(DATA_FILE)
string(REGEX MATCH "^http" HAVE_MATCH ${DATA_FILE})
if(NOT HAVE_MATCH)
message("Data file appears local")
set(LOCAL_DATA "${DATA_FILE}")
elseif(EXISTS "./data.zip")
message("Data file already exists, not re-downloding")
else()
message("Downloading ${DATA_FILE} to data.zip")
file(DOWNLOAD ${DATA_FILE} ./data.zip SHOW_PROGRESS)
if(${CMAKE_MINOR_VERSION} LESS 18)
execute_process(COMMAND unzip -d ${CMAKE_CURRENT_SOURCE_DIR}/data ${CMAKE_CURRENT_SOURCE_DIR}/data.zip)
else()
file(ARCHIVE_EXTRACT INPUT ./data.zip DESTINATION ${CMAKE_SOURCE_DIR}/data)
endif()
endif()
endif()
# give a summary of what will be done
include(cmake/ConfigurationSummary.cmake)
# set up to install profile files
if(ILLIXR_PROFILE_NAMES)
foreach(GRP IN LISTS ILLIXR_PROFILE_NAMES)
install(FILES "profiles/${GRP}.yaml"
DESTINATION $ENV{HOME}/.illixr/profiles)
install(FILES "profiles/${GRP}.yaml"
DESTINATION ${CMAKE_INSTALL_PREFIX}/share/illixr/profiles)
endforeach()
endif()
# reset this, so it is clean for subsequent runs of cmake
set(VISUALIZER "" CACHE STRING "")
#get_cmake_property(_variableNames VARIABLES)
#foreach (_variableName ${_variableNames})
# message(STATUS "${_variableName}=${${_variableName}}")
#endforeach()