1 #################################################################################
4 # Main GEOS build configuration file for CMake build system
6 # Copyright (C) 2009 Mateusz Loskot <mateusz@loskot.net>
8 # This is free software; you can redistribute and/or modify it under
9 # the terms of the GNU Lesser General Public Licence as published
10 # by the Free Software Foundation.
11 # See the COPYING file for more information.
13 #################################################################################
15 cmake_minimum_required(VERSION 2.6)
19 "${CMAKE_MAJOR_VERSION}.${CMAKE_MINOR_VERSION}.${CMAKE_PATCH_VERSION}")
22 # Location of custom CMake modules with macros used by GEOS
23 set(CMAKE_MODULE_PATH "${geos_SOURCE_DIR}/cmake/modules")
25 #################################################################################
27 #################################################################################
29 # GEOS release version
30 # GEOS C++ library SONAME will use these encoding ABI break at every release
33 set(VERSION_PATCH 2dev)
34 set(VERSION "${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_PATCH}")
36 # JTS_PORT is the version of JTS this release is bound to
38 message(STATUS "Setting GEOS version ${VERSION} as port of JTS ${JTS_PORT}")
41 set(CAPI_INTERFACE_CURRENT 8)
42 set(CAPI_INTERFACE_REVISION 2)
43 set(CAPI_INTERFACE_AGE 7)
45 math(EXPR CAPI_VERSION_MAJOR "${CAPI_INTERFACE_CURRENT} - ${CAPI_INTERFACE_AGE}")
46 set(CAPI_VERSION_MINOR ${CAPI_INTERFACE_AGE})
47 set(CAPI_VERSION_PATCH ${CAPI_INTERFACE_REVISION})
48 set(CAPI_VERSION "${CAPI_VERSION_MAJOR}.${CAPI_VERSION_MINOR}.${CAPI_VERSION_PATCH}")
49 message(STATUS "Setting GEOS C API version ${CAPI_VERSION}")
51 #################################################################################
52 # Check custom global options
53 #################################################################################
55 option(GEOS_ENABLE_TESTS
56 "Set to OFF|ON (default) to control build of GEOS tests package" ON)
58 option(GEOS_ENABLE_INLINE
59 "Set to OFF|ON (default) to control GEOS compilation with small functions inlining" ON)
62 option(GEOS_ENABLE_ASSERT
63 "Set to ON|OFF (default) to build GEOS with assert() macro enabled" OFF)
66 if(CMAKE_COMPILER_IS_GNUCC OR CMAKE_COMPILER_IS_GNUCXX)
67 option(GEOS_ENABLE_FLOATSTORE
68 "Set to OFF|ON (default) to control IEEE754 conformance and remove extra precision" ON)
72 option(GEOS_ENABLE_MACOSX_FRAMEWORK
73 "Set to OFF|ON (default) to build GEOS as a Mac OS X framework" ON)
74 option(GEOS_ENABLE_MACOSX_FRAMEWORK_UNIXCOMPAT
75 "Set to ON|OFF (default) to add Unix compatibility to the Mac OS X framework" OFF)
78 #################################################################################
79 # Setup C/C++ compiler options
80 #################################################################################
83 if(NOT CMAKE_BUILD_TYPE)
84 set(CMAKE_BUILD_TYPE Debug CACHE STRING
85 "Choose the type of build, options are: None Debug Release" FORCE)
87 message(STATUS "Setting GEOS build type - ${CMAKE_BUILD_TYPE}")
90 if(CMAKE_BUILD_TYPE STREQUAL Debug)
91 add_definitions(-D_DEBUG)
94 if(CMAKE_COMPILER_IS_GNUCC OR CMAKE_COMPILER_IS_GNUCXX)
97 set(CMAKE_CXX_FLAGS "-pedantic -ansi ${CMAKE_CXX_FLAGS}")
100 if(GEOS_ENABLE_FLOATSTORE)
101 # Remove extra precision by forcing conformance to IEEE 754 rather than IEEE 854
102 set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -ffloat-store")
105 "Forcing IEEE 754 using flag -ffloat-store - ${GEOS_ENABLE_FLOATSTORE}")
107 # Warnings specification
108 set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall -Wno-long-long")
110 # Turn on Position Independent Code generation for GEOS C shared library
111 set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fPIC")
113 # Enable glibc ISO C99 features (macros isfinite, isnan)
114 set(CMAKE_REQUIRED_DEFINITIONS "${CMAKE_REQUIRED_DEFINITIONS} -D_ISOC99_SOURCE=1")
118 # Set pedantic mode by default
119 #set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /W4")
120 string(REGEX REPLACE "/W[0-9]" "/W4" CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS}")
122 if(MSVC80 OR MSVC90 OR MSVC10)
124 # Option is to enable the /MP switch for Visual Studio 2005 or later
125 option(GEOS_MSVC_ENABLE_MP
126 "Set to ON to build GEOS with the /MP option (Visual Studio 2005 and above)." ON)
127 mark_as_advanced(GEOS_MSVC_ENABLE_MP)
128 if(GEOS_MSVC_ENABLE_MP)
129 set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /MP")
131 message(STATUS "Setting Visual Studio 2005+ option /MP to ${GEOS_MSVC_ENABLE_MP}")
133 add_definitions(-D_SCL_SECURE_NO_WARNINGS)
134 add_definitions(-D_CRT_SECURE_NO_WARNINGS)
135 add_definitions(-DNOMINMAX)
140 if(GEOS_ENABLE_INLINE)
141 add_definitions(-DGEOS_INLINE)
144 "Setting GEOS compilation with small functions inlining - ${GEOS_ENABLE_INLINE}")
147 if(GEOS_ENABLE_ASSERT)
148 string(REGEX REPLACE "[-/]D.*NDEBUG" "-U NDEBUG"
149 CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE}")
152 "Setting GEOS compilation with assert() macro enabled - ${GEOS_ENABLE_ASSERT}")
155 #################################################################################
156 # Setup C/C++ library features
157 #################################################################################
160 include(CheckIncludeFiles)
162 check_include_files(stdint.h HAVE_STDINT_H)
163 check_include_files(inttypes.h HAVE_INTTYPES_H)
164 check_include_files(ieeefp.h HAVE_IEEEFP_H)
166 # check types and sizes
167 include(CheckTypeSize)
170 check_type_size("__int64" HAVE_INT64_T_64)
172 if(HAVE_STDINT_H OR HAVE_INTTYPES_H)
173 check_type_size("int64_t" HAVE_INT64_T_64)
175 check_type_size("long long int" HAVE_LONG_LONG_INT_64)
179 # check functions and macros
180 include(CheckPrototypeExists)
181 include(CheckSymbolExists)
183 check_prototype_exists(isnan cmath HAVE_STD_ISNAN)
184 if(NOT HAVE_STD_ISNAN)
186 check_prototype_exists(_isnan float.h HAVE_ISNAN)
188 check_prototype_exists(__isnand math.h HAVE_ISNAND_XCODE)
189 if(NOT HAVE_ISNAND_XCODE)
190 check_prototype_exists(__inline_isnand math.h HAVE_INLINE_ISNAND_XCODE)
193 check_symbol_exists(isnan math.h HAVE_ISNAN)
197 check_prototype_exists(isfinite cmath HAVE_STD_ISFINITE)
199 if(NOT HAVE_STD_ISFINITE)
201 check_prototype_exists(_finite float.h HAVE_FINITE)
203 #CMAKE_COMPILER_IS_GNUCC OR CMAKE_COMPILER_IS_GNUCXX)
204 check_symbol_exists(isfinite math.h HAVE_ISFINITE)
208 ################################################################################
209 # Setup build directories
210 #################################################################################
212 # Put the libaries and binaries that get built into directories at the
213 # top of the build tree rather than in hard-to-find leaf
214 # directories. This simplifies manual testing and the use of the build
215 # tree rather than installed Boost libraries.
216 set(CMAKE_LIBRARY_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/lib)
217 set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/lib)
218 set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/bin)
220 ################################################################################
221 # Setup include directories
222 #################################################################################
224 # for including GEOS C++ API headers
225 include_directories(${geos_SOURCE_DIR}/include)
227 # for including build-specific GEOS C API headers
228 include_directories(${geos_BINARY_DIR}/capi)
230 # for including build-specific version.h, platform.h and geos_c.h
231 include_directories(${geos_BINARY_DIR}/include)
233 #################################################################################
234 # Setup checks and generate config headers
235 #################################################################################
237 # TODO: output to CMAKE_CURRENT_BINARY_DIR instead of CMAKE_SOURCE_DIR
239 if(EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/include/geos/platform.h)
240 message(STATUS "Disabling existing ${CMAKE_CURRENT_SOURCE_DIR}/include/geos/platform.h")
242 if(${CMAKE_MAJOR_VERSION} EQUAL 2 AND ${CMAKE_MINOR_VERSION} EQUAL 6)
243 file(REMOVE ${CMAKE_CURRENT_SOURCE_DIR}/include/geos/platform.h)
244 set(PH_RESULT "removed")
247 ${CMAKE_CURRENT_SOURCE_DIR}/include/geos/platform.h
248 ${CMAKE_CURRENT_SOURCE_DIR}/include/geos/platform.h.disabled)
249 set(PH_RESULT "renamed")
252 message(STATUS "Disabling existing ${CMAKE_CURRENT_SOURCE_DIR}/include/geos/platform.h - ${PH_RESULT}")
255 configure_file(${CMAKE_CURRENT_SOURCE_DIR}/include/geos/platform.h.cmake
256 ${CMAKE_CURRENT_BINARY_DIR}/include/geos/platform.h)
258 configure_file(${CMAKE_CURRENT_SOURCE_DIR}/include/geos/version.h.in
259 ${CMAKE_CURRENT_BINARY_DIR}/include/geos/version.h @ONLY)
261 configure_file(${CMAKE_CURRENT_SOURCE_DIR}/capi/geos_c.h.in
262 ${CMAKE_CURRENT_BINARY_DIR}/capi/geos_c.h @ONLY)
264 #################################################################################
266 #################################################################################
268 if(GEOS_ENABLE_TESTS)
270 # Include CTest support
274 # Define "make check" as alias for "make test"
275 add_custom_target(check COMMAND ctest)
279 #################################################################################
280 # Configure subdirectories
281 #################################################################################
283 add_subdirectory(include)
284 add_subdirectory(src)
285 add_subdirectory(capi)
286 add_subdirectory(tests)
287 add_subdirectory(tools)
289 #################################################################################
291 #################################################################################
293 configure_file("${CMAKE_CURRENT_SOURCE_DIR}/cmake/cmake_uninstall.cmake.in"
294 "${CMAKE_CURRENT_BINARY_DIR}/cmake/cmake_uninstall.cmake"
297 add_custom_target(uninstall
298 "${CMAKE_COMMAND}" -P "${CMAKE_CURRENT_BINARY_DIR}/cmake/cmake_uninstall.cmake")
300 #################################################################################
301 # DEBUG settings - TODO: make a summary
303 message(STATUS "CMake ${CMAKE_VERSION} successfully configured ${PROJECT_NAME} using ${CMAKE_GENERATOR} generator")
305 #message(STATUS "XXX: CMAKE_CXX_FLAGS=${CMAKE_CXX_FLAGS}")
306 #message(STATUS "XXX: CMAKE_CXX_FLAGS_DEBUG=${CMAKE_CXX_FLAGS_DEBUG}")
307 #message(STATUS "XXX: CMAKE_CXX_FLAGS_RELEASE=${CMAKE_CXX_FLAGS_RELEASE}")