-
Notifications
You must be signed in to change notification settings - Fork 36
/
CMakeLists.txt
260 lines (214 loc) · 8.39 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
###########################################################
# Top level CMakeLists.txt file for the core-moos Project
###########################################################
cmake_minimum_required(VERSION 2.8.12)
# Libraries linked via full path no longer produce linker search paths.
cmake_policy(SET CMP0003 NEW)
# MACOSX_RPATH is enabled by default.
if(POLICY CMP0042)
cmake_policy(SET CMP0042 NEW)
endif()
set(PACKAGE_VERSION_MAJOR 10)
set(PACKAGE_VERSION_MINOR 5)
set(PACKAGE_VERSION_PATCH 0)
set(PACKAGE_VERSION "${PACKAGE_VERSION_MAJOR}.${PACKAGE_VERSION_MINOR}.${PACKAGE_VERSION_PATCH}")
message(STATUS "+++ This is MOOS version ${PACKAGE_VERSION} +++")
# If user specifies the build type, use theirs, otherwise use Release
if(NOT DEFINED CMAKE_BUILD_TYPE)
set(CMAKE_BUILD_TYPE Release CACHE STRING "")
endif()
if(NOT DEFINED CMAKE_RUNTIME_OUTPUT_DIRECTORY)
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}/bin")
endif()
if(NOT DEFINED CMAKE_LIBRARY_OUTPUT_DIRECTORY)
set(CMAKE_LIBRARY_OUTPUT_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}/lib")
endif()
if(NOT DEFINED CMAKE_ARCHIVE_OUTPUT_DIRECTORY)
set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}/lib")
endif()
##############################
# Set up RPATH for executables
##############################
# Use @rpath library install names on OSX
# Also set by policy CMP00042
set(CMAKE_MACOSX_RPATH TRUE)
# Use (don't skip) RPATH for binaries in the build tree
set(CMAKE_SKIP_BUILD_RPATH FALSE)
# Don't append external paths to the RPATH
# They're not needed, because MOOS has no dependencies
set(CMAKE_INSTALL_RPATH_USE_LINK_PATH FALSE)
# Don't use the install RPATH for a normal build.
# Only use it when the binaries are installed.
set(CMAKE_BUILD_WITH_INSTALL_RPATH FALSE)
# Set RPATH value for installed executables. This should point
# at the directory containing the MOOS library. Relative paths used to allow
# installed files to be relocated.
if(BUILD_SHARED_LIBS)
if(APPLE)
set(CMAKE_INSTALL_RPATH "@executable_path/../lib")
elseif(UNIX)
set(CMAKE_INSTALL_RPATH "\$ORIGIN/../lib")
endif()
endif()
project(MOOS)
set(CMakeScripts_MODULE_DIR ${CMAKE_CURRENT_SOURCE_DIR}/cmake)
set(CMAKE_MODULE_PATH ${CMakeScripts_MODULE_DIR})
# Turn on all compiler warnings
include(EnableAllWarnings)
# Figure out our git version
option(UPDATE_GIT_VERSION_INFO "update git version info in source tree" ON)
mark_as_advanced(UPDATE_GIT_VERSION_INFO)
if(UPDATE_GIT_VERSION_INFO)
include(GitInfo)
endif()
# Do we want to create dynamic libraries?
option(BUILD_SHARED_LIBS "Build libMOOS as a shared library" OFF)
# Enable Doxygen build with 'make doxygen'
option(ENABLE_DOXYGEN "Enable a 'make doc' target for Doxygen documentation")
if(ENABLE_DOXYGEN)
include(UseDoxygen)
endif()
# Option to enable CDash testing
option(CDASH_SUPPORT "Turn on testing targets that upload results to CDash" OFF)
# Option for code coverage
include(CMakeDependentOption)
set(REQUIRE_CDASH_SUPPORT OFF)
cmake_dependent_option(CODE_COVERAGE
"Build code coverage results, requires GCC compiler (forces Debug build)" OFF
"NOT CMAKE_COMPILER_IS_GNUCXX" OFF)
if(CODE_COVERAGE)
set(CMAKE_CXX_FLAGS_DEBUG
"${CMAKE_CXX_FLAGS_DEBUG} -fprofile-arcs -ftest-coverage")
set(CMAKE_BUILD_TYPE Debug CACHE STRING "" FORCE)
# Ensure that CDash targets are always enabled if coverage is enabled.
if(NOT CDASH_SUPPORT)
get_property(HELP_STRING CACHE CDASH_SUPPORT PROPERTY HELPSTRING)
set(CDASH_SUPPORT ON CACHE BOOL "${HELP_STRING}" FORCE)
message(STATUS "Enabling CDash targets as coverage has been enabled.")
endif()
endif()
if( CDASH_SUPPORT )
enable_testing()
# The BUILDNAME var is picked up by the CTest script
include(SystemUtilityFunctions)
moos_make_informative_build_name(BUILDNAME)
include( CTest )
endif()
#optionally try to compile with c++11 if it is available
option(USE_CXX11_IF_AVAILABLE "use c++11 if available" ON)
if(USE_CXX11_IF_AVAILABLE)
include(CheckCXXCompilerFlag)
CHECK_CXX_COMPILER_FLAG("-std=c++11" COMPILER_SUPPORTS_CXX11)
if(COMPILER_SUPPORTS_CXX11)
if(CMAKE_VERSION VERSION_EQUAL 3.1.0 OR CMAKE_VERSION VERSION_GREATER 3.1.0)
set(CMAKE_CXX_STANDARD 11)
set(CMAKE_CXX_EXTENSIONS OFF)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
else()
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11")
endif()
else()
message(STATUS "no c++11 compiler found -> not using c++11")
endif()
endif()
# Option for explicitly linking against the GNU libstdc++ instead of libc++ on
# OSX Mavericks, required in order to use iMatlab as MATLAB still uses libstdc++
if(${CMAKE_SYSTEM_NAME} MATCHES "Darwin")
# On OSX, get the version number.
find_program(SW_VERS_PROGRAM sw_vers)
mark_as_advanced(SW_VERS_PROGRAM)
execute_process(COMMAND ${SW_VERS_PROGRAM} "-productVersion"
OUTPUT_VARIABLE OSX_VERSION
OUTPUT_STRIP_TRAILING_WHITESPACE)
# Mavericks (10.9) and above use libc++ as the default.
set(OSX_MAVERICKS_VERSION 10.9)
if(OSX_VERSION VERSION_EQUAL OSX_MAVERICKS_VERSION OR
OSX_VERSION VERSION_GREATER OSX_MAVERICKS_VERSION)
option(USE_LIBSTDCPP
"Use (legacy) GNU libstdc++ on OSX >= ${OSX_MAVERICKS_VERSION}, instead of default LLVM libc++ (required for iMatlab)" OFF)
if(USE_LIBSTDCPP)
message("Running OS X Mavericks (specific version: ${OSX_VERSION}) using "
"legacy GNU libstdc++ instead of default LLVM libc++, disable "
"USE_LIBSTDCPP option to revert to default LLVM libc++.")
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -stdlib=libstdc++")
else()
# Remove any previous specification of libstdc++.
message(STATUS "Using default LLVM libc++.")
string(REPLACE "-stdlib=libstdc++" "" CMAKE_CXX_FLAGS
"${CMAKE_CXX_FLAGS}")
endif()
endif()
endif()
########### SETTING UP PREPROCESSOR ################
include(PlatformDefines)
if(UNIX OR "${CMAKE_SYSTEM_PROCESSOR}" STREQUAL "x86_64")
# Cause shared libraries to be built with the -fPIC flag
# This flag requires CMake 2.8.9 or greater.
set(CMAKE_POSITION_INDEPENDENT_CODE ON)
endif()
add_subdirectory(Core)
#########################
# Config Script Creation
#########################
# Provide a cmake config script for the build directory
export(
TARGETS MOOS
NAMESPACE MOOS::
FILE MOOSTargets.cmake
)
# Support existing projects that expect to find MOOS_LIBRARIES and
# MOOS_INCLUDE_DIRS variables.
set(MOOS_LIBRARIES MOOS::MOOS)
# Generate the config file for other projects to find the MOOS build dir
set(CONFIG_FILE "${PROJECT_BINARY_DIR}/MOOSConfig.cmake")
configure_file(
"MOOSConfig.cmake.in"
"${CONFIG_FILE}"
@ONLY
)
# Save a version file in the project's binary directory
include(CMakePackageConfigHelpers)
set(VERSION_FILE "${PROJECT_BINARY_DIR}/MOOSConfigVersion.cmake")
write_basic_package_version_file("${VERSION_FILE}"
VERSION ${PACKAGE_VERSION}
COMPATIBILITY AnyNewerVersion
)
#########################
# Install target
#########################
# Provide a cmake config script for the install directory
set(PROJECT_CONFIG_PATH "lib/cmake/MOOS")
install(
EXPORT MOOS
NAMESPACE MOOS::
FILE MOOSTargets.cmake
DESTINATION ${PROJECT_CONFIG_PATH}
)
# Headers are all combined into one common 'include' dir when MOOS is installed
set(MOOS_INCLUDE_DIRS "\${CMAKE_CURRENT_LIST_DIR}/../../../include")
set(CONFIG_FILE "${PROJECT_BINARY_DIR}/MOOSInstallConfig.cmake")
configure_file( "MOOSConfig.cmake.in" ${CONFIG_FILE} @ONLY )
install(
FILES "${CONFIG_FILE}"
RENAME MOOSConfig.cmake
DESTINATION "${PROJECT_CONFIG_PATH}"
)
# Save a version file in the project's install directory
install(FILES ${VERSION_FILE} DESTINATION "${PROJECT_CONFIG_PATH}")
# Install the MOOSVersion header
install(FILES "${CMAKE_BINARY_DIR}/Core/libMOOS/include/MOOS/libMOOS/MOOSVersion.h" DESTINATION include/MOOS/libMOOS)
#########################
option(ENABLE_EXPORT
"Cause CMake to record this build so other projects can find it " ON)
if(ENABLE_EXPORT)
# Stick build location in the central CMake user package registry, so that
# it may be easily found.
message(STATUS "Location of this build will be exported. "
"Set ENABLE_EXPORT to OFF if you don't want this and "
"delete ~/.cmake/projects/MOOS "
)
export(PACKAGE MOOS)
endif()
include(UninstallTarget)
configure_uninstall_target(${CMAKE_CURRENT_BINARY_DIR}/Uninstall.cmake)