-
Notifications
You must be signed in to change notification settings - Fork 390
/
CMakeLists.txt
301 lines (245 loc) · 8.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
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
cmake_minimum_required(VERSION 2.8.12 FATAL_ERROR)
set(PROJECT_VERSION 1.0.1)
project(CAMODOCAL LANGUAGES C CXX)
########################### Misc. Configs ##############################
# Add custom cmake files folder
SET (PROJECT_CMAKE_DIR ${CMAKE_CURRENT_SOURCE_DIR}/cmake)
# This sets where to look for modules (e.g. "Find*.cmake" files)
SET (CMAKE_MODULE_PATH "${PROJECT_CMAKE_DIR}" "${CMAKE_MODULE_PATH}" )
# Add custom Install Settings
INCLUDE(InstallSettings)
# Libraries
set(CAMODOCAL_INCLUDE_INSTALL_PATH "include")
# Library finding
include(LibraryConfig)
# General build and compiler options and configurations
include(BuildConfig)
# PRINT macro
macro(print)
message(STATUS ${ARGN})
endmacro(print)
# Last but not least: Try to make doxygen target
add_subdirectory(cmake/doc)
################ Various Options ################
# various macro includes
include(FlagUtilities)
include(InstallUtilities)
include(SourceFileUtilities)
include(BinaryUtilities)
############## CamOdoCalConfig.h ##############
# Check endianness
include(TestBigEndian)
test_big_endian(CAMODOCAL_BIG_ENDIAN)
if(NOT CAMODOCAL_BIG_ENDIAN)
set(CAMODOCAL_LITTLE_ENDIAN TRUE)
endif()
# 32/64 bit system check
if(CMAKE_SIZEOF_VOID_P EQUAL 8)
set(CAMODOCAL_ARCH_64 TRUE)
else()
set(CAMODOCAL_ARCH_32 TRUE)
endif()
# Platforms
set(CAMODOCAL_PLATFORM_WINDOWS ${WIN32})
set(CAMODOCAL_PLATFORM_APPLE ${APPLE})
set(CAMODOCAL_PLATFORM_UNIX ${UNIX})
if(UNIX AND NOT APPLE)
set(CAMODOCAL_PLATFORM_LINUX TRUE)
endif()
set(BUILD_SHARED_LIBS ON)
# Check __forceinline
if(MSVC)
include(CheckCXXSourceCompiles)
set(_source "int main() { return 0; } __forceinline void test() { return; }")
check_cxx_source_compiles("${_source}" HAVE_FORCEINLINE)
endif(MSVC)
# Check ciso646 include (literal operators)
include(CheckIncludeFileCXX)
check_include_file_cxx(iso646.h HAVE_ISO646_H)
# XCode and Visual Studio support multiple configurations. In order to tell the
# which one we have to define the macros separately for each configuration
add_compiler_flags("-DCMAKE_BUILD_TYPE=Debug" Debug)
add_compiler_flags("-DCMAKE_BUILD_TYPE=Release" Release)
add_compiler_flags("-DCMAKE_BUILD_TYPE=RelWithDebInfo" RelWithDebInfo)
add_compiler_flags("-DCMAKE_BUILD_TYPE=MinSizeRel" MinSizeRel)
set(GENERATED_FILE_COMMENT
"DO NOT EDIT THIS FILE!
It has been automatically generated by CMake from CamOdoCalConfig.h.in")
# Copy and configure CamOdoCalConfig which gets included in every file
configure_file(CamOdoCalConfig.h.in ${CMAKE_CURRENT_BINARY_DIR}/CamOdoCalConfig.h)
configure_file(CamOdoCalPathConfig.h.in ${CMAKE_CURRENT_BINARY_DIR}/CamOdoCalPathConfig.h)
############## Include Directories ##############
# Set the search paths for include files
include_directories(
# External
${EIGEN3_INCLUDE_DIR}
${OpenCV_INCLUDE_DIRS}
# All library includes are prefixed with the path to avoid conflicts
${CMAKE_CURRENT_SOURCE_DIR}
# testing
${GTEST_INCLUDE_DIRS}
# CamOdoCalConfig.h
${CMAKE_CURRENT_BINARY_DIR}
)
if(BUILD_SHARED_LIBS)
add_definitions(-DCAMODOCAL_EXPORTS)
endif(BUILD_SHARED_LIBS)
# General linker flags
if(MSVC)
if(NOT CMAKE_CXX_FLAGS MATCHES "/EHsc")
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /EHsc")
endif()
endif(MSVC)
if(CAMODOCAL_PLATFORM_UNIX)
#set_linker_flags("-Wl,--no-undefined -ldl -lnsl -lm -pthread -lrt" CACHE)
find_package(LibDL)
find_package(Libnsl)
# find_package(LibM)
find_package(Threads)
find_package(Librt)
find_package(Libm)
set(CAMODOCAL_PLATFORM_UNIX_LIBRARIES ${LIBDL_LIBRARIES} ${LIBNSL_LIBRARIES} ${LIBM_LIBRARIES} ${CMAKE_THREAD_LIBS_INIT} ${Librt_LIBRARIES})
if ("${CMAKE_CXX_COMPILER_ID}" STREQUAL "Clang")
set_linker_flags("-Wl,-undefined,error")
elseif ("${CMAKE_CXX_COMPILER_ID}" STREQUAL "GNU")
set_linker_flags("-Wl,--no-undefined")
endif()
endif(CAMODOCAL_PLATFORM_UNIX)
if(Boost_FOUND)
include_directories(${Boost_INCLUDE_DIRS})
link_directories(${Boost_LIBRARY_DIRS})
add_definitions(-DBOOST_ALL_DYN_LINK)
endif()
link_directories(${CMAKE_LIBRARY_OUTPUT_DIRECTORY})
# testing
enable_testing()
set(VCHARGE_VIZ FALSE)
if(VCHARGE_VIZ)
add_definitions(-DVCHARGE_VIZ)
endif(VCHARGE_VIZ)
################ Installation project target ################
set(TARGET_NAME ${PROJECT_NAME})
add_custom_target(${TARGET_NAME} ALL)
include(GenerateExportHeader)
install(
FILES
${CMAKE_CURRENT_SOURCE_DIR}/cmake/FindBLAS.cmake
${CMAKE_CURRENT_SOURCE_DIR}/cmake/FindEigen3.cmake
${CMAKE_CURRENT_SOURCE_DIR}/cmake/FindGflags.cmake
${CMAKE_CURRENT_SOURCE_DIR}/cmake/FindGlog.cmake
${CMAKE_CURRENT_SOURCE_DIR}/cmake/FindGTest.cmake
${CMAKE_CURRENT_SOURCE_DIR}/cmake/FindLAPACK.cmake
${CMAKE_CURRENT_SOURCE_DIR}/cmake/FindLibDL.cmake
${CMAKE_CURRENT_SOURCE_DIR}/cmake/FindLibm.cmake
${CMAKE_CURRENT_SOURCE_DIR}/cmake/FindLibnsl.cmake
${CMAKE_CURRENT_SOURCE_DIR}/cmake/FindLibrt.cmake
${CMAKE_CURRENT_SOURCE_DIR}/cmake/FindOpenMP.cmake
${CMAKE_CURRENT_SOURCE_DIR}/cmake/FindSuiteSparse.cmake
${CMAKE_CURRENT_SOURCE_DIR}/cmake/FindTBB.cmake
DESTINATION ${INSTALL_CMAKE_DIR}
COMPONENT Devel
)
################ Sub Directories ################
# Global includes
include_directories(
include
)
add_subdirectory(src)
install(DIRECTORY "include/camodocal" DESTINATION ${CAMODOCAL_INCLUDE_INSTALL_PATH} )
# Output
set(_output_blanks " ")
print("")
print("---------------------------------------------------")
print("DEPENDENCY: Required: Found:")
print("---------------------------------------------------")
foreach(_name ${__required_dependencies})
string(TOUPPER ${_name} _name_upper)
string(LENGTH ${_name} _name_length)
math(EXPR _name_length "30 - ${_name_length}")
string(SUBSTRING ${_output_blanks} 0 ${_name_length} _blanks)
if(${_name_upper}_FOUND OR
${_name_upper}_INCLUDE_DIR OR
${_name_upper}_INCLUDE_DIRS OR
${_name_upper}_LIBRARY OR
${_name_upper}_LIBRARY_OPTIMIZED OR
${_name_upper}_LIBRARIES OR
${_name_upper}_LIBRARIES_OPTIMIZED)
set(_found " yes")
else()
set(_found " no")
endif()
print("${_name}${_blanks} yes ${_found}")
endforeach(_name)
foreach(_name ${__optional_dependencies})
string(TOUPPER ${_name} _name_upper)
string(LENGTH ${_name} _name_length)
math(EXPR _name_length "30 - ${_name_length}")
string(SUBSTRING ${_output_blanks} 0 ${_name_length} _blanks)
if(${_name_upper}_FOUND OR
${_name_upper}_INCLUDE_DIR OR
${_name_upper}_INCLUDE_DIRS OR
${_name_upper}_LIBRARY OR
${_name_upper}_LIBRARY_OPTIMIZED OR
${_name_upper}_LIBRARIES OR
${_name_upper}_LIBRARIES_OPTIMIZED)
set(_found " yes")
else()
set(_found " no")
endif()
print("${_name}${_blanks} no ${_found}")
endforeach(_name)
print("")
print("---------------------------------------------------")
print("Library: Build: Condition:")
print("---------------------------------------------------")
foreach(_name ${__libraries})
string(TOUPPER ${_name} _name_upper)
string(LENGTH ${_name} _name_length)
math(EXPR _name_length "30 - ${_name_length}")
string(SUBSTRING ${_output_blanks} 0 ${_name_length} _blanks)
if(NOT ${_name_upper}_BUILD)
set(_condition ${${_name_upper}_CONDITION})
else()
set(_condition " (satisfied)")
add_dependencies(${TARGET_NAME} ${_name})
generate_export_header(${_name})
endif()
print("${_name}${_blanks}${${_name_upper}_BUILD} ${_condition}")
endforeach(_name)
print("")
print("---------------------------------------------------")
print("Executable: Build: Condition:")
print("---------------------------------------------------")
foreach(_name ${__executables})
string(TOUPPER ${_name} _name_upper)
string(LENGTH ${_name} _name_length)
math(EXPR _name_length "30 - ${_name_length}")
string(SUBSTRING ${_output_blanks} 0 ${_name_length} _blanks)
if(NOT ${_name_upper}_BUILD)
set(_condition ${${_name_upper}_CONDITION})
else()
set(_condition " (satisfied)")
add_dependencies(${TARGET_NAME} ${_name})
endif()
print("${_name}${_blanks}${${_name_upper}_BUILD} ${_condition}")
endforeach(_name)
print("")
print("---------------------------------------------------")
print("Test: Build: Condition:")
print("---------------------------------------------------")
foreach(_name ${__tests})
string(TOUPPER ${_name} _name_upper)
string(LENGTH ${_name} _name_length)
math(EXPR _name_length "30 - ${_name_length}")
string(SUBSTRING ${_output_blanks} 0 ${_name_length} _blanks)
if(NOT ${_name_upper}_BUILD)
set(_condition ${${_name_upper}_CONDITION})
else()
set(_condition " (satisfied)")
add_dependencies(${TARGET_NAME} ${_name})
endif()
print("${_name}${_blanks}${${_name_upper}_BUILD} ${_condition}")
endforeach(_name)
print("")
######################### Installation Stuff ###########################
INCLUDE(InstallProjectConfig)