2015-09-30 11:49:22 +08:00
|
|
|
cmake_minimum_required (VERSION 2.8.11)
|
2015-02-09 23:12:21 +08:00
|
|
|
|
|
|
|
if(COMMAND cmake_policy)
|
2015-02-11 01:11:31 +08:00
|
|
|
if(POLICY CMP0054)
|
|
|
|
cmake_policy(SET CMP0054 NEW)
|
|
|
|
endif()
|
|
|
|
if(POLICY CMP0042)
|
|
|
|
cmake_policy(SET CMP0042 NEW)
|
|
|
|
endif()
|
2015-02-09 23:12:21 +08:00
|
|
|
endif()
|
|
|
|
|
2010-11-26 18:04:54 +08:00
|
|
|
include (CheckFunctionExists)
|
2011-01-03 01:45:14 +08:00
|
|
|
include (CheckIncludeFile)
|
2015-03-18 07:32:57 +08:00
|
|
|
include (CheckLibraryExists)
|
2010-11-26 18:04:54 +08:00
|
|
|
include (CheckCXXSourceCompiles)
|
2013-10-03 02:35:38 +08:00
|
|
|
include (CheckCXXCompilerFlag)
|
2010-11-26 18:04:54 +08:00
|
|
|
|
2015-04-12 04:58:15 +08:00
|
|
|
# using 10.7 because boost requires libc++ and 10.6 doesn't include it
|
|
|
|
set(CMAKE_OSX_DEPLOYMENT_TARGET 10.7)
|
|
|
|
|
2015-06-07 21:57:01 +08:00
|
|
|
# only relevant for building shared libs but let's set it regardless
|
|
|
|
set(CMAKE_OSX_RPATH 1)
|
|
|
|
|
2015-02-24 20:36:28 +08:00
|
|
|
project(SimGear)
|
|
|
|
|
2011-05-21 21:56:10 +08:00
|
|
|
# read 'version' file into a variable (stripping any newlines or spaces)
|
|
|
|
file(READ version versionFile)
|
|
|
|
string(STRIP ${versionFile} SIMGEAR_VERSION)
|
2010-11-26 18:04:54 +08:00
|
|
|
|
2013-09-04 15:31:29 +08:00
|
|
|
set(FIND_LIBRARY_USE_LIB64_PATHS ON)
|
|
|
|
|
2011-12-29 21:45:29 +08:00
|
|
|
# use simgear version also as the SO version (if building SOs)
|
|
|
|
SET(SIMGEAR_SOVERSION ${SIMGEAR_VERSION})
|
|
|
|
|
2012-07-18 01:18:05 +08:00
|
|
|
# Warning when build is not an out-of-source build.
|
|
|
|
string(COMPARE EQUAL "${CMAKE_SOURCE_DIR}" "${CMAKE_BINARY_DIR}" InSourceBuild)
|
|
|
|
if(InSourceBuild)
|
|
|
|
message(WARNING "Avoid building inside the source tree!")
|
|
|
|
message(WARNING "Create a separate build directory instead (i.e. 'sgbuild') and call CMake from there: ")
|
|
|
|
message(WARNING " mkdir ../sgbuild && cd ../sgbuild && cmake ${CMAKE_SOURCE_DIR}")
|
|
|
|
endif(InSourceBuild)
|
|
|
|
|
2013-10-17 23:09:39 +08:00
|
|
|
#packaging
|
|
|
|
SET(CPACK_RESOURCE_FILE_LICENSE "${PROJECT_SOURCE_DIR}/COPYING")
|
|
|
|
SET(CPACK_RESOURCE_FILE_README "${PROJECT_SOURCE_DIR}/README")
|
|
|
|
SET(CPACK_PACKAGE_DESCRIPTION_SUMMARY "Simulation support libraries for FlightGear and related projects")
|
|
|
|
SET(CPACK_PACKAGE_VENDOR "The FlightGear project")
|
|
|
|
SET(CPACK_GENERATOR "TBZ2")
|
|
|
|
SET(CPACK_INSTALL_CMAKE_PROJECTS ${CMAKE_CURRENT_BINARY_DIR};SimGear;ALL;/)
|
|
|
|
|
|
|
|
|
|
|
|
# split version string into components, note CMAKE_MATCH_0 is the entire regexp match
|
|
|
|
string(REGEX MATCH "([0-9]+)\\.([0-9]+)\\.([0-9]+)" CPACK_PACKAGE_VERSION ${SIMGEAR_VERSION} )
|
2015-02-08 21:46:09 +08:00
|
|
|
set(CPACK_PACKAGE_VERSION_MAJOR ${CMAKE_MATCH_1})
|
2013-10-17 23:09:39 +08:00
|
|
|
set(CPACK_PACKAGE_VERSION_MINOR ${CMAKE_MATCH_2})
|
|
|
|
set(CPACK_PACKAGE_VERSION_PATCH ${CMAKE_MATCH_3})
|
|
|
|
|
|
|
|
message(STATUS "version is ${CPACK_PACKAGE_VERSION_MAJOR} dot ${CPACK_PACKAGE_VERSION_MINOR} dot ${CPACK_PACKAGE_VERSION_PATCH}")
|
|
|
|
|
|
|
|
set(CPACK_SOURCE_GENERATOR TBZ2)
|
|
|
|
set(CPACK_SOURCE_PACKAGE_FILE_NAME "simgear-${SIMGEAR_VERSION}" CACHE INTERNAL "tarball basename")
|
|
|
|
set(CPACK_SOURCE_IGNORE_FILES
|
|
|
|
"^${PROJECT_SOURCE_DIR}/.git;\\\\.gitignore;Makefile.am;~$;${CPACK_SOURCE_IGNORE_FILES}")
|
|
|
|
|
|
|
|
message(STATUS "ignoring: ${CPACK_SOURCE_IGNORE_FILES}")
|
|
|
|
|
|
|
|
include (CPack)
|
2011-10-22 22:37:17 +08:00
|
|
|
|
2010-11-26 18:04:54 +08:00
|
|
|
# We have some custom .cmake scripts not in the official distribution.
|
|
|
|
set(CMAKE_MODULE_PATH "${PROJECT_SOURCE_DIR}/CMakeModules;${CMAKE_MODULE_PATH}")
|
|
|
|
|
2011-09-12 14:08:26 +08:00
|
|
|
# Change the default build type to something fast
|
|
|
|
if(NOT CMAKE_BUILD_TYPE)
|
|
|
|
set(CMAKE_BUILD_TYPE Release CACHE STRING
|
|
|
|
"Choose the type of build, options are: None Debug Release RelWithDebInfo MinSizeRel."
|
|
|
|
FORCE)
|
|
|
|
endif(NOT CMAKE_BUILD_TYPE)
|
|
|
|
|
2011-11-25 19:06:54 +08:00
|
|
|
# Determine name of library installation directory, i.e. "lib" vs "lib64", which
|
|
|
|
# differs between all Debian-based vs all other Linux distros.
|
|
|
|
# See cmake bug #11964, http://cmake.org/gitweb?p=cmake.git;a=commit;h=126c993d
|
2015-09-30 11:49:22 +08:00
|
|
|
include(GNUInstallDirs)
|
2011-11-25 19:06:54 +08:00
|
|
|
message(STATUS "Library installation directory: ${CMAKE_INSTALL_LIBDIR}")
|
|
|
|
|
2012-12-01 17:59:57 +08:00
|
|
|
#####################################################################################
|
|
|
|
# Configure library search paths
|
|
|
|
#####################################################################################
|
|
|
|
|
|
|
|
if(NOT "${CMAKE_LIBRARY_ARCHITECTURE}" STREQUAL "")
|
|
|
|
# Workaround for Ubuntu/Debian which introduced the "multiarch" library
|
|
|
|
# directory structure, which is unsupported by CMake < 2.8.10, so we need to
|
|
|
|
# add paths manually
|
|
|
|
# see http://www.cmake.org/Bug/view.php?id=12049 and
|
|
|
|
# http://www.cmake.org/Bug/view.php?id=12037
|
|
|
|
list(APPEND ADDITIONAL_LIBRARY_PATHS
|
|
|
|
/usr/local/lib/${CMAKE_LIBRARY_ARCHITECTURE}
|
|
|
|
/usr/lib/${CMAKE_LIBRARY_ARCHITECTURE}
|
|
|
|
/lib/${CMAKE_LIBRARY_ARCHITECTURE})
|
|
|
|
message(STATUS "additional library directories: ${ADDITIONAL_LIBRARY_PATHS}")
|
|
|
|
endif()
|
|
|
|
|
|
|
|
#####################################################################################
|
|
|
|
|
2012-11-09 03:01:38 +08:00
|
|
|
if (NOT MSVC)
|
2012-06-25 02:04:26 +08:00
|
|
|
option(SIMGEAR_SHARED "Set to ON to build SimGear as a shared library/framework" OFF)
|
2012-11-09 03:01:38 +08:00
|
|
|
option(SYSTEM_EXPAT "Set to ON to build SimGear using the system libExpat" OFF)
|
|
|
|
else()
|
|
|
|
# Building SimGear DLLs is currently not supported for MSVC.
|
|
|
|
set(SIMGEAR_SHARED OFF)
|
|
|
|
# Using a system expat is currently not supported for MSVC - it would require shared simgear (DLL).
|
|
|
|
set(SYSTEM_EXPAT OFF)
|
|
|
|
endif()
|
|
|
|
|
2011-08-24 19:14:36 +08:00
|
|
|
option(SIMGEAR_HEADLESS "Set to ON to build SimGear without GUI/graphics support" OFF)
|
2012-06-25 02:04:26 +08:00
|
|
|
option(ENABLE_RTI "Set to ON to build SimGear with RTI support" OFF)
|
|
|
|
option(ENABLE_TESTS "Set to OFF to disable building SimGear's test applications" ON)
|
2012-10-01 02:41:51 +08:00
|
|
|
option(ENABLE_SOUND "Set to OFF to disable building SimGear's sound support" ON)
|
2013-06-13 05:56:04 +08:00
|
|
|
option(ENABLE_PKGUTIL "Set to ON to build the sg_pkgutil application (default)" ON)
|
2015-10-01 11:12:35 +08:00
|
|
|
option(ENABLE_CURL "Set to ON to use libCurl as the HTTP client backend" OFF)
|
2011-06-12 05:22:26 +08:00
|
|
|
|
2011-09-12 16:53:18 +08:00
|
|
|
if (MSVC)
|
2013-03-04 00:06:51 +08:00
|
|
|
GET_FILENAME_COMPONENT(PARENT_DIR ${PROJECT_BINARY_DIR} PATH)
|
2011-09-12 16:53:18 +08:00
|
|
|
if (CMAKE_CL_64)
|
|
|
|
SET(TEST_3RDPARTY_DIR "${PARENT_DIR}/3rdparty.x64")
|
|
|
|
else (CMAKE_CL_64)
|
|
|
|
SET(TEST_3RDPARTY_DIR "${PARENT_DIR}/3rdparty")
|
|
|
|
endif (CMAKE_CL_64)
|
|
|
|
if (EXISTS ${TEST_3RDPARTY_DIR})
|
|
|
|
set(MSVC_3RDPARTY_ROOT ${PARENT_DIR} CACHE PATH "Location where the third-party dependencies are extracted")
|
|
|
|
else (EXISTS ${TEST_3RDPARTY_DIR})
|
|
|
|
set(MSVC_3RDPARTY_ROOT NOT_FOUND CACHE PATH "Location where the third-party dependencies are extracted")
|
|
|
|
endif (EXISTS ${TEST_3RDPARTY_DIR})
|
|
|
|
else (MSVC)
|
|
|
|
set(MSVC_3RDPARTY_ROOT NOT_FOUND CACHE PATH "Location where the third-party dependencies are extracted")
|
|
|
|
endif (MSVC)
|
2011-01-28 21:46:05 +08:00
|
|
|
|
2011-01-28 21:51:15 +08:00
|
|
|
if (MSVC AND MSVC_3RDPARTY_ROOT)
|
2011-01-28 21:46:05 +08:00
|
|
|
message(STATUS "3rdparty files located in ${MSVC_3RDPARTY_ROOT}")
|
|
|
|
set( OSG_MSVC "msvc" )
|
2012-09-03 23:32:26 +08:00
|
|
|
if (${MSVC_VERSION} EQUAL 1700)
|
|
|
|
set( OSG_MSVC ${OSG_MSVC}110 )
|
|
|
|
elseif (${MSVC_VERSION} EQUAL 1600)
|
2011-01-28 21:46:05 +08:00
|
|
|
set( OSG_MSVC ${OSG_MSVC}100 )
|
2012-09-03 23:32:26 +08:00
|
|
|
else (${MSVC_VERSION} EQUAL 1700)
|
2011-01-28 21:46:05 +08:00
|
|
|
set( OSG_MSVC ${OSG_MSVC}90 )
|
2012-09-03 23:32:26 +08:00
|
|
|
endif (${MSVC_VERSION} EQUAL 1700)
|
2011-01-28 21:46:05 +08:00
|
|
|
if (CMAKE_CL_64)
|
|
|
|
set( OSG_MSVC ${OSG_MSVC}-64 )
|
|
|
|
set( MSVC_3RDPARTY_DIR 3rdParty.x64 )
|
|
|
|
else (CMAKE_CL_64)
|
|
|
|
set( MSVC_3RDPARTY_DIR 3rdParty )
|
|
|
|
endif (CMAKE_CL_64)
|
|
|
|
|
2012-12-01 17:59:58 +08:00
|
|
|
set (CMAKE_LIBRARY_PATH ${MSVC_3RDPARTY_ROOT}/${MSVC_3RDPARTY_DIR}/lib ${MSVC_3RDPARTY_ROOT}/install/${OSG_MSVC}/OpenScenegraph/lib ${MSVC_3RDPARTY_ROOT}/install/${OSG_MSVC}/OpenRTI/lib )
|
|
|
|
set (CMAKE_INCLUDE_PATH ${MSVC_3RDPARTY_ROOT}/${MSVC_3RDPARTY_DIR}/include ${MSVC_3RDPARTY_ROOT}/install/${OSG_MSVC}/OpenScenegraph/include ${MSVC_3RDPARTY_ROOT}/install/${OSG_MSVC}/OpenRTI/include)
|
2012-09-02 18:43:21 +08:00
|
|
|
find_path(BOOST_ROOT boost/version.hpp
|
|
|
|
${MSVC_3RDPARTY_ROOT}/boost
|
2012-12-01 17:59:58 +08:00
|
|
|
${MSVC_3RDPARTY_ROOT}/boost_1_52_0
|
2012-09-02 18:43:21 +08:00
|
|
|
${MSVC_3RDPARTY_ROOT}/boost_1_51_0
|
|
|
|
${MSVC_3RDPARTY_ROOT}/boost_1_50_0
|
|
|
|
${MSVC_3RDPARTY_ROOT}/boost_1_49_0
|
|
|
|
${MSVC_3RDPARTY_ROOT}/boost_1_48_0
|
|
|
|
${MSVC_3RDPARTY_ROOT}/boost_1_47_0
|
|
|
|
${MSVC_3RDPARTY_ROOT}/boost_1_46_1
|
|
|
|
${MSVC_3RDPARTY_ROOT}/boost_1_46_0
|
|
|
|
${MSVC_3RDPARTY_ROOT}/boost_1_45_0
|
|
|
|
${MSVC_3RDPARTY_ROOT}/boost_1_44_0
|
|
|
|
)
|
|
|
|
# set (BOOST_ROOT ${MSVC_3RDPARTY_ROOT}/boost_1_44_0)
|
2011-09-12 16:53:18 +08:00
|
|
|
message(STATUS "BOOST_ROOT is ${BOOST_ROOT}")
|
2011-01-28 21:46:05 +08:00
|
|
|
set (OPENAL_INCLUDE_DIR ${MSVC_3RDPARTY_ROOT}/${MSVC_3RDPARTY_DIR}/include)
|
2012-06-25 02:04:26 +08:00
|
|
|
set (OPENAL_LIBRARY_DIR ${MSVC_3RDPARTY_ROOT}/${MSVC_3RDPARTY_DIR}/lib)
|
2011-01-28 21:51:15 +08:00
|
|
|
endif (MSVC AND MSVC_3RDPARTY_ROOT)
|
2010-11-26 18:04:54 +08:00
|
|
|
|
2013-06-13 04:11:43 +08:00
|
|
|
if(APPLE)
|
2014-01-28 20:39:28 +08:00
|
|
|
find_library(COCOA_LIBRARY Cocoa)
|
2015-12-09 04:42:43 +08:00
|
|
|
|
|
|
|
# this should be handled by setting CMAKE_OSX_DEPLOYMENT_TARGET
|
|
|
|
# but it's not working reliably, so forcing it for now
|
|
|
|
SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -mmacosx-version-min=10.7")
|
2015-12-11 04:53:17 +08:00
|
|
|
SET(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -mmacosx-version-min=10.7")
|
2013-06-13 04:11:43 +08:00
|
|
|
endif()
|
|
|
|
|
2015-03-18 07:28:52 +08:00
|
|
|
if(${CMAKE_SYSTEM_NAME} MATCHES "Linux" OR
|
|
|
|
${CMAKE_SYSTEM_NAME} MATCHES "FreeBSD")
|
|
|
|
find_package(Threads REQUIRED)
|
|
|
|
endif()
|
2015-04-12 04:58:15 +08:00
|
|
|
|
2014-05-08 08:02:36 +08:00
|
|
|
# Somehow this only works if included before searching for Boost...
|
|
|
|
include(BoostTestTargets)
|
|
|
|
|
2010-11-26 18:04:54 +08:00
|
|
|
find_package(Boost REQUIRED)
|
2015-02-13 00:19:57 +08:00
|
|
|
set (BOOST_CXX_FLAGS "-DBOOST_BIMAP_DISABLE_SERIALIZATION")
|
2011-01-03 17:48:31 +08:00
|
|
|
|
2011-08-24 19:14:36 +08:00
|
|
|
if(SIMGEAR_HEADLESS)
|
2012-06-25 02:04:26 +08:00
|
|
|
message(STATUS "SimGear mode: HEADLESS")
|
2012-10-01 02:41:51 +08:00
|
|
|
set(ENABLE_SOUND 0)
|
2010-11-26 18:04:54 +08:00
|
|
|
else()
|
2012-06-25 02:04:26 +08:00
|
|
|
message(STATUS "SimGear mode: NORMAL")
|
2010-11-26 18:04:54 +08:00
|
|
|
find_package(OpenGL REQUIRED)
|
2015-02-08 21:46:09 +08:00
|
|
|
|
2012-10-01 02:41:51 +08:00
|
|
|
if (ENABLE_SOUND)
|
|
|
|
find_package(OpenAL REQUIRED)
|
2012-12-08 04:26:24 +08:00
|
|
|
message(STATUS "Sound support: ENABLED")
|
2012-10-01 02:41:51 +08:00
|
|
|
endif(ENABLE_SOUND)
|
2015-02-08 21:46:09 +08:00
|
|
|
|
2014-08-08 06:58:26 +08:00
|
|
|
find_package(OpenSceneGraph 3.2.0 REQUIRED osgText osgSim osgDB osgParticle osgGA osgViewer osgUtil)
|
2011-08-24 19:14:36 +08:00
|
|
|
endif(SIMGEAR_HEADLESS)
|
2010-11-26 18:04:54 +08:00
|
|
|
|
2012-08-11 22:21:52 +08:00
|
|
|
find_package(ZLIB REQUIRED)
|
|
|
|
|
2015-10-01 11:12:35 +08:00
|
|
|
if (ENABLE_CURL)
|
2015-11-24 08:09:19 +08:00
|
|
|
find_package(CURL REQUIRED)
|
2015-10-01 11:12:35 +08:00
|
|
|
message(STATUS "Curl HTTP client: ENABLED")
|
|
|
|
endif()
|
|
|
|
|
2012-09-17 00:07:35 +08:00
|
|
|
if (SYSTEM_EXPAT)
|
|
|
|
message(STATUS "Requested to use system Expat library, forcing SIMGEAR_SHARED to true")
|
|
|
|
set(SIMGEAR_SHARED ON)
|
|
|
|
find_package(EXPAT REQUIRED)
|
2013-09-20 03:12:32 +08:00
|
|
|
|
2012-09-17 00:07:35 +08:00
|
|
|
else()
|
|
|
|
message(STATUS "Using built-in expat code")
|
2013-09-20 05:07:41 +08:00
|
|
|
# XML_STATIC is important to avoid sg_expat_external.h
|
|
|
|
# declaring symbols as declspec(import)
|
|
|
|
add_definitions(-DHAVE_EXPAT_CONFIG_H -DXML_STATIC)
|
2015-02-08 21:46:09 +08:00
|
|
|
set(EXPAT_INCLUDE_DIRS
|
|
|
|
${PROJECT_SOURCE_DIR}/3rdparty/expat
|
2013-09-20 04:42:28 +08:00
|
|
|
${PROJECT_BINARY_DIR}/3rdparty/expat)
|
2012-09-17 00:07:35 +08:00
|
|
|
endif(SYSTEM_EXPAT)
|
|
|
|
|
2013-09-20 03:12:32 +08:00
|
|
|
include_directories(${EXPAT_INCLUDE_DIRS})
|
|
|
|
|
2012-11-05 03:00:53 +08:00
|
|
|
check_include_file(inttypes.h HAVE_INTTYPES_H)
|
2011-01-03 01:45:14 +08:00
|
|
|
check_include_file(sys/time.h HAVE_SYS_TIME_H)
|
|
|
|
check_include_file(sys/timeb.h HAVE_SYS_TIMEB_H)
|
|
|
|
check_include_file(unistd.h HAVE_UNISTD_H)
|
|
|
|
check_include_file(windows.h HAVE_WINDOWS_H)
|
2010-11-26 18:04:54 +08:00
|
|
|
|
2012-11-05 03:00:53 +08:00
|
|
|
if(HAVE_INTTYPES_H)
|
|
|
|
# ShivaVG needs inttypes.h
|
|
|
|
add_definitions(-DHAVE_INTTYPES_H)
|
|
|
|
endif()
|
|
|
|
|
2011-08-24 19:25:46 +08:00
|
|
|
if(ENABLE_RTI)
|
2012-06-25 02:04:26 +08:00
|
|
|
# See if we have any rti library variant installed
|
|
|
|
message(STATUS "RTI: ENABLED")
|
2011-09-06 00:45:33 +08:00
|
|
|
find_package(RTI)
|
2012-06-25 02:04:26 +08:00
|
|
|
else()
|
|
|
|
message(STATUS "RTI: DISABLED")
|
2011-08-24 19:25:46 +08:00
|
|
|
endif(ENABLE_RTI)
|
2010-12-24 16:48:16 +08:00
|
|
|
|
2010-11-26 18:04:54 +08:00
|
|
|
check_function_exists(gettimeofday HAVE_GETTIMEOFDAY)
|
|
|
|
check_function_exists(ftime HAVE_FTIME)
|
|
|
|
check_function_exists(timegm HAVE_TIMEGM)
|
|
|
|
check_function_exists(rint HAVE_RINT)
|
2011-10-15 09:06:35 +08:00
|
|
|
check_function_exists(mkdtemp HAVE_MKDTEMP)
|
2012-05-04 00:29:16 +08:00
|
|
|
check_function_exists(bcopy HAVE_BCOPY)
|
|
|
|
check_function_exists(mmap HAVE_MMAP)
|
2011-07-19 20:53:13 +08:00
|
|
|
|
|
|
|
if(HAVE_UNISTD_H)
|
|
|
|
set(CMAKE_REQUIRED_INCLUDES ${CMAKE_INCLUDE_PATH})
|
|
|
|
check_cxx_source_compiles(
|
|
|
|
"#include <unistd.h>
|
|
|
|
#if !defined(_POSIX_TIMERS) || (0 >= _POSIX_TIMERS)
|
|
|
|
#error clock_gettime is not supported
|
|
|
|
#endif
|
|
|
|
|
|
|
|
int main() { return 0; }
|
|
|
|
"
|
2012-02-25 05:20:37 +08:00
|
|
|
HAVE_CLOCK_GETTIME)
|
2011-07-19 20:53:13 +08:00
|
|
|
endif(HAVE_UNISTD_H)
|
|
|
|
|
|
|
|
set(RT_LIBRARY "")
|
|
|
|
if(HAVE_CLOCK_GETTIME)
|
2012-02-25 05:20:37 +08:00
|
|
|
check_library_exists(rt clock_gettime "" HAVE_RT)
|
|
|
|
if(HAVE_RT)
|
|
|
|
set(RT_LIBRARY rt)
|
|
|
|
endif(HAVE_RT)
|
2011-07-19 20:53:13 +08:00
|
|
|
endif(HAVE_CLOCK_GETTIME)
|
|
|
|
|
2013-10-02 23:18:21 +08:00
|
|
|
set(DL_LIBRARY "")
|
|
|
|
check_cxx_source_compiles(
|
|
|
|
"#include <dlfcn.h>
|
|
|
|
int main(void) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
"
|
|
|
|
HAVE_DLFCN_H)
|
|
|
|
|
|
|
|
if(HAVE_DLFCN_H)
|
|
|
|
check_library_exists(dl dlerror "" HAVE_DL)
|
2014-04-03 20:42:11 +08:00
|
|
|
if(HAVE_DL)
|
|
|
|
set(DL_LIBRARY "dl")
|
|
|
|
endif()
|
2013-10-02 23:18:21 +08:00
|
|
|
endif()
|
|
|
|
|
2011-11-25 19:06:54 +08:00
|
|
|
SET(CMAKE_DEBUG_POSTFIX "d" CACHE STRING "add a postfix, usually 'd' on windows")
|
2011-01-03 02:44:04 +08:00
|
|
|
SET(CMAKE_RELEASE_POSTFIX "" CACHE STRING "add a postfix, usually empty on windows")
|
2011-09-26 20:32:34 +08:00
|
|
|
SET(CMAKE_RELWITHDEBINFO_POSTFIX "" CACHE STRING "add a postfix, usually empty on windows")
|
|
|
|
SET(CMAKE_MINSIZEREL_POSTFIX "" CACHE STRING "add a postfix, usually empty on windows")
|
2011-01-03 02:44:04 +08:00
|
|
|
|
2010-11-26 18:04:54 +08:00
|
|
|
# isnan might not be real symbol, so can't check using function_exists
|
|
|
|
check_cxx_source_compiles(
|
2015-02-08 21:46:09 +08:00
|
|
|
"#include <cmath>
|
2014-11-12 06:29:24 +08:00
|
|
|
int main() { return isnan(0.0);} "
|
2010-11-26 18:04:54 +08:00
|
|
|
HAVE_ISNAN)
|
|
|
|
|
2012-09-28 00:39:18 +08:00
|
|
|
check_cxx_source_compiles(
|
2015-02-08 21:46:09 +08:00
|
|
|
"#include <cmath>
|
2014-11-12 06:29:24 +08:00
|
|
|
int main() { return std::isnan(0.0);} "
|
2012-09-28 00:39:18 +08:00
|
|
|
HAVE_STD_ISNAN)
|
|
|
|
|
2010-11-26 18:04:54 +08:00
|
|
|
if(CMAKE_COMPILER_IS_GNUCXX)
|
2012-05-05 15:46:11 +08:00
|
|
|
set(WARNING_FLAGS_CXX "-Wall")
|
|
|
|
set(WARNING_FLAGS_C "-Wall")
|
|
|
|
|
2011-10-23 22:59:27 +08:00
|
|
|
# certain GCC versions don't provide the atomic builds, and hence
|
|
|
|
# require is to provide them in SGAtomic.cxx
|
|
|
|
set(CMAKE_REQUIRED_INCLUDES ${CMAKE_INCLUDE_PATH})
|
|
|
|
check_cxx_source_compiles(
|
|
|
|
"int main() { unsigned mValue; return __sync_add_and_fetch(&mValue, 1); }"
|
|
|
|
GCC_ATOMIC_BUILTINS_FOUND)
|
2010-11-26 18:04:54 +08:00
|
|
|
endif(CMAKE_COMPILER_IS_GNUCXX)
|
|
|
|
|
2012-05-05 15:46:11 +08:00
|
|
|
if (CMAKE_CXX_COMPILER_ID STREQUAL "Clang")
|
2015-02-13 00:19:57 +08:00
|
|
|
# Boost redeclares class members
|
|
|
|
set(WARNING_FLAGS_CXX "-Wall -Wno-overloaded-virtual -Wno-redeclared-class-member")
|
|
|
|
set(WARNING_FLAGS_C "-Wall")
|
|
|
|
set(CMAKE_XCODE_ATTRIBUTE_CLANG_CXX_LIBRARY "libc++")
|
|
|
|
set(CMAKE_XCODE_ATTRIBUTE_CLANG_CXX_LANGUAGE_STANDARD "c++11")
|
|
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11 -stdlib=libc++")
|
2012-05-05 15:46:11 +08:00
|
|
|
endif()
|
|
|
|
|
2013-10-03 02:35:38 +08:00
|
|
|
if(CMAKE_COMPILER_IS_GNUCXX OR CMAKE_CXX_COMPILER_ID STREQUAL "Clang")
|
|
|
|
# boost goes haywire wrt static asserts
|
|
|
|
check_cxx_compiler_flag(-Wno-unused-local-typedefs HAS_NOWARN_UNUSED_TYPEDEFS)
|
|
|
|
if(HAS_NOWARN_UNUSED_TYPEDEFS)
|
|
|
|
set(WARNING_FLAGS_CXX " ${WARNING_FLAGS_CXX} -Wno-unused-local-typedefs")
|
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
|
2010-11-26 18:04:54 +08:00
|
|
|
if(WIN32)
|
|
|
|
|
2012-03-16 06:29:06 +08:00
|
|
|
if(MINGW)
|
|
|
|
add_definitions(-D_WIN32_WINNT=0x501)
|
|
|
|
endif()
|
|
|
|
|
2010-11-26 18:04:54 +08:00
|
|
|
if(MSVC)
|
|
|
|
# turn off various warnings
|
|
|
|
# foreach(warning 4244 4251 4267 4275 4290 4786 4305 4996)
|
|
|
|
# SET(WARNING_FLAGS "${WARNING_FLAGS} /wd${warning}")
|
|
|
|
# endforeach(warning)
|
2015-02-08 21:46:09 +08:00
|
|
|
|
2013-03-07 14:58:38 +08:00
|
|
|
set(MSVC_FLAGS "-DWIN32 -DNOMINMAX -D_USE_MATH_DEFINES -D_CRT_SECURE_NO_WARNINGS -D__CRT_NONSTDC_NO_WARNINGS /wd4996 /wd4250 -Dstrdup=_strdup")
|
2013-04-28 05:44:32 +08:00
|
|
|
if (${MSVC_VERSION} GREATER 1599)
|
|
|
|
set( MSVC_LD_FLAGS "/FORCE:MULTIPLE" )
|
|
|
|
endif (${MSVC_VERSION} GREATER 1599)
|
2010-11-26 18:04:54 +08:00
|
|
|
endif(MSVC)
|
2015-02-08 21:46:09 +08:00
|
|
|
|
2010-11-26 18:04:54 +08:00
|
|
|
# assumed on Windows
|
|
|
|
set(HAVE_GETLOCALTIME 1)
|
2015-02-08 21:46:09 +08:00
|
|
|
|
2011-09-08 03:12:35 +08:00
|
|
|
set( WINSOCK_LIBRARY "ws2_32.lib" )
|
2011-09-08 03:41:55 +08:00
|
|
|
set( RT_LIBRARY "winmm" )
|
2012-05-05 15:46:11 +08:00
|
|
|
endif(WIN32)
|
2012-01-09 05:41:42 +08:00
|
|
|
|
2012-05-05 15:46:11 +08:00
|
|
|
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${WARNING_FLAGS_C} ${MSVC_FLAGS}")
|
|
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${WARNING_FLAGS_CXX} ${MSVC_FLAGS} ${BOOST_CXX_FLAGS}")
|
2013-04-28 05:44:32 +08:00
|
|
|
set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} ${MSVC_LD_FLAGS}")
|
2010-11-26 18:04:54 +08:00
|
|
|
|
2015-02-08 21:46:09 +08:00
|
|
|
# use BEFORE to ensure local directories are used first,
|
2014-04-03 20:42:11 +08:00
|
|
|
# ahead of system-installed libs
|
|
|
|
include_directories(BEFORE ${PROJECT_SOURCE_DIR})
|
|
|
|
include_directories(BEFORE ${PROJECT_SOURCE_DIR}/simgear/canvas/ShivaVG/include)
|
|
|
|
include_directories(BEFORE ${PROJECT_BINARY_DIR}/simgear)
|
2010-11-26 18:04:54 +08:00
|
|
|
|
2015-02-08 21:46:09 +08:00
|
|
|
include_directories(${OPENSCENEGRAPH_INCLUDE_DIRS}
|
|
|
|
${Boost_INCLUDE_DIRS}
|
|
|
|
${ZLIB_INCLUDE_DIR}
|
2013-02-13 21:32:19 +08:00
|
|
|
${OPENAL_INCLUDE_DIR}
|
2015-10-01 11:12:35 +08:00
|
|
|
${CURL_INCLUDE_DIRS}
|
2013-02-13 21:32:19 +08:00
|
|
|
)
|
2010-11-26 18:04:54 +08:00
|
|
|
|
|
|
|
add_definitions(-DHAVE_CONFIG_H)
|
|
|
|
|
|
|
|
# configure a header file to pass some of the CMake settings
|
|
|
|
# to the source code
|
|
|
|
configure_file (
|
|
|
|
"${PROJECT_SOURCE_DIR}/simgear/simgear_config_cmake.h.in"
|
|
|
|
"${PROJECT_BINARY_DIR}/simgear/simgear_config.h"
|
|
|
|
)
|
2011-11-26 23:39:40 +08:00
|
|
|
|
|
|
|
if(ENABLE_TESTS)
|
2012-06-25 02:04:26 +08:00
|
|
|
# enable CTest / make test target
|
|
|
|
message(STATUS "Tests: ENABLED")
|
2011-07-19 19:55:55 +08:00
|
|
|
|
2012-06-25 02:04:26 +08:00
|
|
|
include (Dart)
|
2013-03-16 06:21:38 +08:00
|
|
|
enable_testing()
|
2012-06-25 02:04:26 +08:00
|
|
|
else()
|
|
|
|
message(STATUS "Tests: DISABLED")
|
2011-11-26 23:39:40 +08:00
|
|
|
endif(ENABLE_TESTS)
|
|
|
|
|
2013-06-13 05:56:04 +08:00
|
|
|
# always set TEST_LIBS as it is also used by other tools/applications
|
2013-10-02 23:18:21 +08:00
|
|
|
set(TEST_LIBS_INTERNAL_CORE
|
|
|
|
${CMAKE_THREAD_LIBS_INIT}
|
|
|
|
${ZLIB_LIBRARY}
|
|
|
|
${WINSOCK_LIBRARY}
|
|
|
|
${RT_LIBRARY}
|
|
|
|
${DL_LIBRARY}
|
2015-10-01 11:12:35 +08:00
|
|
|
${COCOA_LIBRARY}
|
|
|
|
${CURL_LIBRARIES})
|
2013-10-02 23:18:21 +08:00
|
|
|
set(TEST_LIBS SimGearCore ${TEST_LIBS_INTERNAL_CORE})
|
2013-06-13 05:56:04 +08:00
|
|
|
|
|
|
|
if(NOT SIMGEAR_HEADLESS)
|
2013-10-02 23:18:21 +08:00
|
|
|
set(TEST_LIBS SimGearScene ${OPENGL_LIBRARIES} ${TEST_LIBS})
|
2013-06-13 05:56:04 +08:00
|
|
|
endif()
|
|
|
|
|
2010-11-26 18:04:54 +08:00
|
|
|
install (FILES ${PROJECT_BINARY_DIR}/simgear/simgear_config.h DESTINATION include/simgear/)
|
2013-09-20 03:12:32 +08:00
|
|
|
|
2014-07-30 18:44:21 +08:00
|
|
|
include_directories(3rdparty/utf8/source)
|
|
|
|
|
2013-09-20 03:12:32 +08:00
|
|
|
add_subdirectory(3rdparty)
|
2010-11-26 18:04:54 +08:00
|
|
|
add_subdirectory(simgear)
|
|
|
|
|
2010-12-28 21:38:05 +08:00
|
|
|
#-----------------------------------------------------------------------------
|
|
|
|
### uninstall target
|
|
|
|
#-----------------------------------------------------------------------------
|
|
|
|
CONFIGURE_FILE(
|
|
|
|
"${CMAKE_CURRENT_SOURCE_DIR}/CMakeModules/cmake_uninstall.cmake.in"
|
|
|
|
"${CMAKE_CURRENT_BINARY_DIR}/cmake_uninstall.cmake"
|
|
|
|
IMMEDIATE @ONLY)
|
|
|
|
ADD_CUSTOM_TARGET(uninstall
|
|
|
|
"${CMAKE_COMMAND}" -P "${CMAKE_CURRENT_BINARY_DIR}/cmake_uninstall.cmake")
|