2020-06-18 19:58:47 +08:00
|
|
|
cmake_minimum_required (VERSION 3.10)
|
|
|
|
|
|
|
|
if(POLICY CMP0072)
|
2021-05-24 19:40:23 +08:00
|
|
|
cmake_policy(SET CMP0072 NEW)
|
2020-06-18 19:58:47 +08:00
|
|
|
endif()
|
|
|
|
|
|
|
|
if(POLICY CMP0093)
|
|
|
|
cmake_policy(SET CMP0093 NEW)
|
2015-02-09 23:12:21 +08:00
|
|
|
endif()
|
|
|
|
|
2017-01-26 21:46:36 +08:00
|
|
|
message(STATUS "CMAKE Build type: ${CMAKE_BUILD_TYPE}")
|
|
|
|
# Set a default build type if none was specified
|
|
|
|
if(NOT CMAKE_BUILD_TYPE AND NOT CMAKE_CONFIGURATION_TYPES)
|
|
|
|
message(STATUS "Setting build type to 'Debug' as none was specified.")
|
|
|
|
set(CMAKE_BUILD_TYPE Debug CACHE STRING "Choose the type of build." FORCE)
|
|
|
|
# Set the possible values of build type for cmake-gui
|
|
|
|
set_property(CACHE CMAKE_BUILD_TYPE PROPERTY STRINGS "Debug" "Release"
|
|
|
|
"MinSizeRel" "RelWithDebInfo")
|
|
|
|
endif()
|
2017-01-20 21:56:15 +08:00
|
|
|
|
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)
|
2016-01-29 17:39:08 +08:00
|
|
|
include (GenerateExportHeader)
|
2010-11-26 18:04:54 +08:00
|
|
|
|
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)
|
2020-06-18 19:58:47 +08:00
|
|
|
set(CMAKE_OSX_DEPLOYMENT_TARGET "10.12" CACHE STRING "Minimum OS X deployment version")
|
2015-06-07 21:57:01 +08:00
|
|
|
|
2020-06-23 03:39:45 +08:00
|
|
|
set(CMAKE_CXX_STANDARD 17)
|
2016-10-25 04:52:51 +08:00
|
|
|
set(CMAKE_CXX_STANDARD_REQUIRED YES)
|
2016-05-23 01:22:29 +08:00
|
|
|
|
2016-11-02 21:59:43 +08:00
|
|
|
# read 'version' file into a variable (stripping any newlines or spaces)
|
2020-06-27 20:26:13 +08:00
|
|
|
file(READ simgear-version versionFile)
|
2016-11-02 21:59:43 +08:00
|
|
|
string(STRIP ${versionFile} SIMGEAR_VERSION)
|
|
|
|
|
|
|
|
project(SimGear VERSION ${SIMGEAR_VERSION} LANGUAGES C CXX)
|
2015-02-24 20:36:28 +08:00
|
|
|
|
2018-10-02 05:28:56 +08:00
|
|
|
# add a dependency on the version file
|
2016-06-09 18:03:35 +08:00
|
|
|
set_property(DIRECTORY APPEND PROPERTY CMAKE_CONFIGURE_DEPENDS version)
|
|
|
|
|
2017-09-28 22:10:21 +08:00
|
|
|
set_property(GLOBAL PROPERTY FIND_LIBRARY_USE_LIB64_PATHS TRUE)
|
2013-09-04 15:31:29 +08:00
|
|
|
|
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)
|
|
|
|
|
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}")
|
|
|
|
|
2020-08-18 17:31:47 +08:00
|
|
|
include(Packaging)
|
|
|
|
|
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
|
|
|
|
#####################################################################################
|
|
|
|
|
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)
|
2016-05-26 08:24:19 +08:00
|
|
|
option(SYSTEM_EXPAT "Set to ON to build SimGear using the system expat library" OFF)
|
|
|
|
option(SYSTEM_UDNS "Set to ON to build SimGear using the system udns library" OFF)
|
2012-11-09 03:01:38 +08:00
|
|
|
else()
|
|
|
|
# Building SimGear DLLs is currently not supported for MSVC.
|
|
|
|
set(SIMGEAR_SHARED OFF)
|
2016-05-26 08:24:19 +08:00
|
|
|
# Using external 3rd party libraries is currently not supported for MSVC - it would require shared simgear (DLL).
|
2012-11-09 03:01:38 +08:00
|
|
|
set(SYSTEM_EXPAT OFF)
|
2016-05-26 08:24:19 +08:00
|
|
|
set(SYSTEM_UDNS OFF)
|
2012-11-09 03:01:38 +08:00
|
|
|
endif()
|
|
|
|
|
2011-08-24 19:14:36 +08:00
|
|
|
option(SIMGEAR_HEADLESS "Set to ON to build SimGear without GUI/graphics support" OFF)
|
2021-03-06 16:10:20 +08:00
|
|
|
option(ENABLE_CYCLONE "Set to ON to build SimGear with Cyclone Data Distribution Service support" ON)
|
2012-06-25 02:04:26 +08:00
|
|
|
option(ENABLE_RTI "Set to ON to build SimGear with RTI support" OFF)
|
2017-02-26 22:46:29 +08:00
|
|
|
option(ENABLE_GDAL "Set to ON to build SimGear with GDAL support" OFF)
|
2012-06-25 02:04:26 +08:00
|
|
|
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)
|
2018-06-02 20:06:15 +08:00
|
|
|
option(USE_AEONWAVE "Set to ON to use AeonWave instead of OpenAL" ON)
|
2013-06-13 05:56:04 +08:00
|
|
|
option(ENABLE_PKGUTIL "Set to ON to build the sg_pkgutil application (default)" ON)
|
2019-01-15 17:36:23 +08:00
|
|
|
option(ENABLE_SIMD "Enable SSE/SSE2 support for compilers" ON)
|
|
|
|
option(ENABLE_SIMD_CODE "Enable SSE/SSE2 support code for compilers" OFF)
|
2020-08-18 17:31:47 +08:00
|
|
|
option(ENABLE_ASAN "Set to ON to build SimGear with LLVM AddressSanitizer (ASan) support" OFF)
|
2016-12-16 17:49:44 +08:00
|
|
|
|
2019-01-15 17:36:23 +08:00
|
|
|
if (NOT ENABLE_SIMD AND ENABLE_SIMD_CODE)
|
|
|
|
set(ENABLE_SIMD_CODE OFF)
|
|
|
|
endif()
|
|
|
|
|
2016-12-16 17:49:44 +08:00
|
|
|
include (DetectArch)
|
2020-04-05 21:04:10 +08:00
|
|
|
include (ExportDebugSymbols)
|
2011-06-12 05:22:26 +08:00
|
|
|
|
2016-08-16 05:35:21 +08:00
|
|
|
# until the fstream fix is applied and generally available in OSG,
|
|
|
|
# keep the compatability link option as the default
|
|
|
|
option(OSG_FSTREAM_EXPORT_FIXED "Set to ON if the osgDB fstream export patch is applied" OFF)
|
|
|
|
|
2011-09-12 16:53:18 +08:00
|
|
|
if (MSVC)
|
2020-05-07 21:13:54 +08:00
|
|
|
# override CMake default RelWithDebInfo flags. This is important to ensure
|
|
|
|
# good performance
|
2020-05-08 21:31:44 +08:00
|
|
|
set(CMAKE_CXX_FLAGS_RELWITHDEBINFO "/Zi /O2 /Ob2 /D NDEBUG")
|
|
|
|
set(CMAKE_C_FLAGS_RELWITHDEBINFO "/Zi /O2 /Ob2 /D NDEBUG")
|
2020-10-20 23:51:20 +08:00
|
|
|
endif ()
|
|
|
|
|
|
|
|
# Setup MSVC 3rd party directories
|
|
|
|
include( ConfigureMsvc3rdParty )
|
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)
|
2013-06-13 04:11:43 +08:00
|
|
|
endif()
|
|
|
|
|
2020-08-18 17:31:47 +08:00
|
|
|
find_package(Threads REQUIRED)
|
2015-04-12 04:58:15 +08:00
|
|
|
|
2010-11-26 18:04:54 +08:00
|
|
|
find_package(Boost REQUIRED)
|
2020-06-22 02:31:35 +08:00
|
|
|
set (BOOST_CXX_FLAGS "-DBOOST_BIMAP_DISABLE_SERIALIZATION -DBOOST_NO_STDLIB_CONFIG -DBOOST_NO_AUTO_PTR -DBOOST_NO_CXX98_BINDERS")
|
2016-07-04 20:26:19 +08:00
|
|
|
include(BoostTestTargets)
|
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)
|
2016-08-06 21:40:14 +08:00
|
|
|
if (USE_AEONWAVE)
|
2018-06-02 20:06:15 +08:00
|
|
|
find_package(AAX)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if(NOT AAX_FOUND)
|
2018-06-05 15:39:51 +08:00
|
|
|
set(USE_AEONWAVE FALSE)
|
2016-08-06 21:40:14 +08:00
|
|
|
find_package(OpenAL REQUIRED)
|
|
|
|
endif()
|
|
|
|
|
2018-06-02 20:06:15 +08:00
|
|
|
if(AAX_FOUND)
|
|
|
|
message(STATUS "Sound support: AeonWave")
|
|
|
|
else()
|
|
|
|
message(STATUS "Sound support: OpenAL")
|
|
|
|
endif()
|
2012-10-01 02:41:51 +08:00
|
|
|
endif(ENABLE_SOUND)
|
2015-02-08 21:46:09 +08:00
|
|
|
|
2020-11-09 06:36:45 +08:00
|
|
|
find_package(OpenSceneGraph 3.4.1 REQUIRED osgText osgSim osgDB osgParticle osgGA osgViewer osgUtil osgTerrain)
|
2016-08-16 05:37:32 +08:00
|
|
|
|
|
|
|
if (MSVC)
|
|
|
|
set(CMAKE_REQUIRED_INCLUDES ${OPENSCENEGRAPH_INCLUDE_DIRS})
|
|
|
|
# ensure OSG was compiled with OSG_USE_UTF8_FILENAME set
|
|
|
|
check_cxx_source_compiles(
|
|
|
|
"#include <osg/Config>
|
|
|
|
#if !defined(OSG_USE_UTF8_FILENAME)
|
|
|
|
#error OSG UTF8 support not enabled
|
|
|
|
#endif
|
|
|
|
int main() { return 0; }"
|
|
|
|
SIMGEAR_OSG_USE_UTF8_FILENAME)
|
|
|
|
if (NOT SIMGEAR_OSG_USE_UTF8_FILENAME)
|
2016-11-13 22:57:39 +08:00
|
|
|
message(FATAL_ERROR "Please rebuild OSG with OSG_USE_UTF8_FILENAME set to ON")
|
2016-08-16 05:37:32 +08:00
|
|
|
endif()
|
|
|
|
endif()
|
2011-08-24 19:14:36 +08:00
|
|
|
endif(SIMGEAR_HEADLESS)
|
2010-11-26 18:04:54 +08:00
|
|
|
|
2020-08-24 03:11:14 +08:00
|
|
|
if(${CMAKE_SYSTEM_NAME} MATCHES "OpenBSD")
|
|
|
|
# As of 2020-08-01, OpenBSD's system zlib is slightly old, but it's usable
|
|
|
|
# with a workaround in simgear/io/iostreams/gzfstream.cxx.
|
|
|
|
find_package(ZLIB 1.2.3 REQUIRED)
|
|
|
|
else()
|
|
|
|
find_package(ZLIB 1.2.4 REQUIRED)
|
|
|
|
endif()
|
|
|
|
|
2021-01-10 00:30:43 +08:00
|
|
|
find_package(LibLZMA REQUIRED)
|
2016-05-07 17:11:40 +08:00
|
|
|
find_package(CURL REQUIRED)
|
2015-10-01 11:12:35 +08:00
|
|
|
|
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")
|
|
|
|
endif(SYSTEM_EXPAT)
|
|
|
|
|
2011-08-24 19:25:46 +08:00
|
|
|
if(ENABLE_RTI)
|
2017-08-17 04:15:20 +08:00
|
|
|
find_package(PkgConfig)
|
|
|
|
if(PKG_CONFIG_FOUND)
|
2020-03-16 06:29:43 +08:00
|
|
|
SET(ENV{PKG_CONFIG_PATH} "${CMAKE_INSTALL_PREFIX}/${CMAKE_INSTALL_LIBDIR}/pkgconfig:$ENV{PKG_CONFIG_PATH}")
|
2020-06-22 02:31:35 +08:00
|
|
|
pkg_check_modules(RTI IMPORTED_TARGET hla-rti13)
|
2017-08-17 04:15:20 +08:00
|
|
|
endif(PKG_CONFIG_FOUND)
|
|
|
|
if(RTI_FOUND)
|
|
|
|
message(STATUS "RTI: ENABLED")
|
|
|
|
else()
|
|
|
|
message(STATUS "RTI: DISABLED")
|
|
|
|
endif(RTI_FOUND)
|
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
|
|
|
|
2021-03-06 16:10:20 +08:00
|
|
|
if(ENABLE_CYCLONE)
|
2021-03-08 23:15:14 +08:00
|
|
|
find_package(CycloneDDS QUIET)
|
2021-03-05 22:23:25 +08:00
|
|
|
if (CycloneDDS_FOUND)
|
2021-03-06 16:10:20 +08:00
|
|
|
message(STATUS "Data Distribution Service support: CycloneDDS")
|
2021-03-08 23:15:14 +08:00
|
|
|
set(SG_HAVE_DDS 1)
|
2021-03-06 16:10:20 +08:00
|
|
|
else(CycloneDDS_FOUND)
|
|
|
|
message(STATUS "Data Distribution Service support: DISBLED")
|
2021-03-05 22:23:25 +08:00
|
|
|
endif(CycloneDDS_FOUND)
|
2021-03-06 16:10:20 +08:00
|
|
|
endif(ENABLE_CYCLONE)
|
2021-03-05 22:23:25 +08:00
|
|
|
|
2016-10-08 20:44:44 +08:00
|
|
|
if(ENABLE_GDAL)
|
|
|
|
find_package(GDAL 2.0.0 REQUIRED)
|
|
|
|
endif(ENABLE_GDAL)
|
|
|
|
|
2020-08-18 17:31:47 +08:00
|
|
|
include(CheckPOSIXFeatures)
|
2013-10-02 23:18:21 +08:00
|
|
|
|
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
|
|
|
|
2017-12-29 20:46:42 +08:00
|
|
|
# Check if the <regex> implementation in the C++ standard library is usable.
|
|
|
|
# This is necessary because g++ 4.8 lies about its C++11 compliance: its
|
|
|
|
# <regex> is utterly unusable, cf. [1].
|
|
|
|
# The big preprocessor test essentially comes from [2], and gcc upstream devs
|
|
|
|
# appear to back it (see comments following [2], as well as [3]).
|
|
|
|
#
|
|
|
|
# [1] https://stackoverflow.com/a/12665408/4756009
|
|
|
|
# [2] https://stackoverflow.com/a/41186162/4756009
|
|
|
|
# [3] https://gcc.gnu.org/bugzilla/show_bug.cgi?id=78905
|
|
|
|
check_cxx_source_compiles(
|
|
|
|
"#include <regex>
|
2018-01-03 07:34:52 +08:00
|
|
|
|
|
|
|
int main() {
|
|
|
|
#if __cplusplus >= 201103L && \
|
|
|
|
(!defined(__GLIBCXX__) || \
|
|
|
|
(__cplusplus >= 201402L) || \
|
|
|
|
defined(_GLIBCXX_REGEX_DFS_QUANTIFIERS_LIMIT) || \
|
|
|
|
defined(_GLIBCXX_REGEX_STATE_LIMIT) || \
|
|
|
|
(defined(_GLIBCXX_RELEASE) && _GLIBCXX_RELEASE > 4))
|
|
|
|
#else
|
|
|
|
nullptr = void; // intentionally trigger a compilation error
|
|
|
|
#endif
|
|
|
|
}"
|
2017-12-29 20:46:42 +08:00
|
|
|
HAVE_WORKING_STD_REGEX)
|
|
|
|
|
2010-11-26 18:04:54 +08:00
|
|
|
if(CMAKE_COMPILER_IS_GNUCXX)
|
2017-03-26 16:17:10 +08:00
|
|
|
set(WARNING_FLAGS_CXX "-Wall -fPIC")
|
|
|
|
set(WARNING_FLAGS_C "-Wall -fPIC")
|
2012-05-05 15:46:11 +08:00
|
|
|
|
2020-05-28 17:46:18 +08:00
|
|
|
if (X86 OR X86_64)
|
|
|
|
set(SIMD_COMPILER_FLAGS "-msse2 -mfpmath=sse -ftree-vectorize -ftree-slp-vectorize")
|
2016-12-16 17:49:44 +08:00
|
|
|
endif()
|
|
|
|
|
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)
|
2020-09-30 00:40:04 +08:00
|
|
|
|
|
|
|
set(CMAKE_CXX_FLAGS_RELWITHDEBINFO "-O3 -g -DNDEBUG")
|
|
|
|
set(CMAKE_C_FLAGS_RELWITHDEBINFO "-O3 -g -DNDEBUG")
|
2010-11-26 18:04:54 +08:00
|
|
|
endif(CMAKE_COMPILER_IS_GNUCXX)
|
|
|
|
|
2016-12-16 18:05:03 +08:00
|
|
|
if (CLANG)
|
2015-02-13 00:19:57 +08:00
|
|
|
# Boost redeclares class members
|
2017-03-26 16:17:10 +08:00
|
|
|
set(WARNING_FLAGS_CXX "-Wall -fPIC -Wno-overloaded-virtual -Wno-redeclared-class-member")
|
|
|
|
set(WARNING_FLAGS_C "-Wall -fPIC")
|
2015-02-13 00:19:57 +08:00
|
|
|
set(CMAKE_XCODE_ATTRIBUTE_CLANG_CXX_LIBRARY "libc++")
|
2016-10-25 04:52:51 +08:00
|
|
|
# fix Boost compilation :(
|
|
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -stdlib=libc++")
|
2020-05-13 21:23:00 +08:00
|
|
|
# override CMake default RelWithDebInfo flags.
|
|
|
|
set(CMAKE_CXX_FLAGS_RELWITHDEBINFO "-O3 -g -DNDEBUG")
|
|
|
|
set(CMAKE_C_FLAGS_RELWITHDEBINFO "-O3 -g -DNDEBUG")
|
|
|
|
|
2020-05-28 17:46:18 +08:00
|
|
|
set(SIMD_COMPILER_FLAGS "-msse2 -mfpmath=sse -ftree-vectorize -ftree-slp-vectorize")
|
2012-05-05 15:46:11 +08:00
|
|
|
endif()
|
|
|
|
|
2020-08-18 17:31:47 +08:00
|
|
|
if (ENABLE_ASAN)
|
|
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fsanitize=address")
|
|
|
|
set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -fsanitize=address")
|
|
|
|
set(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} -fsanitize=address")
|
|
|
|
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -fsanitize=address")
|
|
|
|
|
|
|
|
# needed for check_cxx_source_compiles
|
|
|
|
set(CMAKE_REQUIRED_LINK_OPTIONS "-fsanitize=address")
|
2016-10-08 20:44:44 +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)
|
2020-06-23 03:39:45 +08:00
|
|
|
set(MSVC_FLAGS "-D_HAS_STD_BYTE=0 -DWIN32 -DNOMINMAX -D_USE_MATH_DEFINES -D_CRT_SECURE_NO_WARNINGS -D__CRT_NONSTDC_NO_WARNINGS /MP /bigobj")
|
2020-05-28 17:46:18 +08:00
|
|
|
if (X86)
|
|
|
|
set(SIMD_COMPILER_FLAGS "/arch:SSE /arch:SSE2")
|
2016-12-16 17:49:44 +08:00
|
|
|
endif()
|
2015-02-08 21:46:09 +08:00
|
|
|
|
2016-11-13 22:57:39 +08:00
|
|
|
if (NOT OSG_FSTREAM_EXPORT_FIXED)
|
2016-08-16 05:35:21 +08:00
|
|
|
message(STATUS "For better linking performance, use OSG with patched fstream header")
|
2016-06-10 03:37:54 +08:00
|
|
|
# needed to avoid link errors on multiply-defined standard C++
|
|
|
|
# symbols. Suspect this may be an OSG-DB export bug
|
2013-04-28 05:44:32 +08:00
|
|
|
set( MSVC_LD_FLAGS "/FORCE:MULTIPLE" )
|
2016-08-16 05:35:21 +08:00
|
|
|
endif ()
|
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" )
|
2016-07-03 20:36:22 +08:00
|
|
|
set( SHLWAPI_LIBRARY "Shlwapi.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
|
|
|
|
2020-05-28 17:46:18 +08:00
|
|
|
# append the SIMD flags if requested
|
|
|
|
if (ENABLE_SIMD)
|
|
|
|
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${SIMD_COMPILER_FLAGS}")
|
|
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${SIMD_COMPILER_FLAGS}")
|
|
|
|
|
|
|
|
# set for multi-configuration generators
|
|
|
|
set(CMAKE_C_FLAGS_RELEASE "${CMAKE_C_FLAGS_RELEASE} ${SIMD_COMPILER_FLAGS}")
|
|
|
|
set(CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE} ${SIMD_COMPILER_FLAGS}")
|
|
|
|
|
|
|
|
set(CMAKE_C_FLAGS_RELWITHDEBINFO "${CMAKE_C_FLAGS_RELWITHDEBINFO} ${SIMD_COMPILER_FLAGS}")
|
|
|
|
set(CMAKE_CXX_FLAGS_RELWITHDEBINFO "${CMAKE_CXX_FLAGS_RELWITHDEBINFO} ${SIMD_COMPILER_FLAGS}")
|
|
|
|
endif()
|
|
|
|
|
|
|
|
|
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
|
|
|
|
2018-01-21 20:02:43 +08:00
|
|
|
include(CheckCXXFeatures)
|
2017-12-22 15:49:21 +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
|
|
|
|
2020-08-18 17:31:47 +08:00
|
|
|
include (Dart)
|
|
|
|
enable_testing()
|
|
|
|
include(AddSimGearTest) # helper to setup a test
|
2013-06-13 05:56:04 +08:00
|
|
|
|
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
|
|
|
|
2020-08-18 17:31:47 +08:00
|
|
|
if(SYSTEM_UDNS)
|
|
|
|
message(STATUS "Requested to use system udns library, forcing SIMGEAR_SHARED to true")
|
|
|
|
set(SIMGEAR_SHARED ON)
|
|
|
|
find_package(Udns REQUIRED)
|
2016-04-28 14:19:30 +08:00
|
|
|
endif()
|
|
|
|
|
2013-09-20 03:12:32 +08:00
|
|
|
add_subdirectory(3rdparty)
|
2010-11-26 18:04:54 +08:00
|
|
|
add_subdirectory(simgear)
|
|
|
|
|
2016-01-29 17:39:08 +08:00
|
|
|
#-----------------------------------------------------------------------------
|
|
|
|
### Export stuff, see https://cmake.org/cmake/help/v3.2/manual/cmake-packages.7.html#creating-packages
|
|
|
|
#-----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
generate_export_header(SimGearCore)
|
2016-01-30 22:29:12 +08:00
|
|
|
if(NOT SIMGEAR_HEADLESS)
|
|
|
|
generate_export_header(SimGearScene)
|
|
|
|
endif()
|
2016-01-29 17:39:08 +08:00
|
|
|
|
|
|
|
include(CMakePackageConfigHelpers)
|
|
|
|
|
|
|
|
write_basic_package_version_file(
|
|
|
|
"${CMAKE_CURRENT_BINARY_DIR}/SimGear/SimGearConfigVersion.cmake"
|
|
|
|
VERSION ${SIMGEAR_VERSION}
|
|
|
|
COMPATIBILITY AnyNewerVersion
|
|
|
|
)
|
|
|
|
|
|
|
|
configure_file(SimGearConfig.cmake.in
|
|
|
|
"${CMAKE_CURRENT_BINARY_DIR}/SimGear/SimGearConfig.cmake"
|
|
|
|
@ONLY
|
|
|
|
)
|
|
|
|
|
2016-10-21 02:59:18 +08:00
|
|
|
set(ConfigPackageLocation ${CMAKE_INSTALL_LIBDIR}/cmake/SimGear)
|
2016-01-29 17:39:08 +08:00
|
|
|
install(EXPORT SimGearTargets
|
|
|
|
DESTINATION ${ConfigPackageLocation}
|
|
|
|
)
|
|
|
|
install(
|
|
|
|
FILES
|
|
|
|
"${CMAKE_CURRENT_BINARY_DIR}/SimGear/SimGearConfig.cmake"
|
|
|
|
"${CMAKE_CURRENT_BINARY_DIR}/SimGear/SimGearConfigVersion.cmake"
|
|
|
|
DESTINATION ${ConfigPackageLocation}
|
|
|
|
COMPONENT Devel
|
|
|
|
)
|
|
|
|
|
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")
|