2015-03-14 17:06:34 +00:00
|
|
|
cmake_minimum_required (VERSION 2.8.11)
|
2010-11-30 10:08:30 +00:00
|
|
|
|
|
|
|
include (CheckFunctionExists)
|
|
|
|
include (CheckCSourceCompiles)
|
2010-12-25 23:44:02 +00:00
|
|
|
include (CheckCXXSourceCompiles)
|
|
|
|
include (CheckIncludeFile)
|
2011-10-22 15:07:09 +00:00
|
|
|
|
2015-02-09 15:11:28 +00:00
|
|
|
if(COMMAND cmake_policy)
|
2015-02-10 17:12:01 +00:00
|
|
|
if(POLICY CMP0054)
|
|
|
|
cmake_policy(SET CMP0054 NEW)
|
|
|
|
endif()
|
2015-09-28 20:12:46 +00:00
|
|
|
# Mac RPATH policy
|
2015-02-10 17:12:01 +00:00
|
|
|
if(POLICY CMP0042)
|
|
|
|
cmake_policy(SET CMP0042 NEW)
|
|
|
|
endif()
|
2015-02-09 15:11:28 +00:00
|
|
|
endif()
|
|
|
|
|
2015-06-07 15:20:30 +00:00
|
|
|
if(APPLE)
|
|
|
|
# using 10.7 because boost requires libc++ and 10.6 doesn't include it
|
|
|
|
set(CMAKE_OSX_DEPLOYMENT_TARGET 10.7)
|
|
|
|
|
|
|
|
set(CMAKE_INSTALL_RPATH "@loader_path/../Frameworks")
|
|
|
|
# when building, don't use the install RPATH already
|
|
|
|
# (but later on when installing)
|
|
|
|
SET(CMAKE_BUILD_WITH_INSTALL_RPATH FALSE)
|
|
|
|
endif()
|
2015-04-11 20:58:55 +00:00
|
|
|
|
2015-02-24 12:35:26 +00:00
|
|
|
project(FlightGear)
|
|
|
|
|
2011-11-30 22:33:03 +00:00
|
|
|
# We have some custom .cmake scripts not in the official distribution.
|
|
|
|
set(CMAKE_MODULE_PATH "${PROJECT_SOURCE_DIR}/CMakeModules;${CMAKE_MODULE_PATH}")
|
|
|
|
|
2012-07-17 17:19:17 +00: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. 'fgbuild') and call CMake from there: ")
|
|
|
|
message(WARNING " mkdir ../fgbuild && cd ../fgbuild && cmake ${CMAKE_SOURCE_DIR}")
|
|
|
|
endif(InSourceBuild)
|
|
|
|
|
2015-09-28 20:12:07 +00:00
|
|
|
include(GNUInstallDirs)
|
2012-08-18 11:40:57 +00:00
|
|
|
# System detection/default settings
|
|
|
|
include( DetectDistro )
|
2012-08-18 12:11:31 +00:00
|
|
|
include( DetectBrowser )
|
2012-08-18 11:40:57 +00:00
|
|
|
|
2012-03-12 20:18:37 +00:00
|
|
|
set(CMAKE_DEBUG_POSTFIX "d" CACHE STRING "add a postfix, usually d on windows")
|
|
|
|
set(CMAKE_RELEASE_POSTFIX "" CACHE STRING "add a postfix, usually empty on windows")
|
|
|
|
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-05 16:19:42 +00:00
|
|
|
|
2011-01-01 21:46:16 +00:00
|
|
|
# read 'version' file into a variable (stripping any newlines or spaces)
|
|
|
|
file(READ version versionFile)
|
2012-08-26 13:28:51 +00:00
|
|
|
if (NOT versionFile)
|
|
|
|
message(FATAL_ERROR "Unable to determine FlightGear version. Version file is missing.")
|
|
|
|
endif()
|
|
|
|
string(STRIP "${versionFile}" FLIGHTGEAR_VERSION)
|
2016-06-09 10:04:09 +00:00
|
|
|
# add a dependency on the versino file
|
|
|
|
set_property(DIRECTORY APPEND PROPERTY CMAKE_CONFIGURE_DEPENDS version)
|
2010-11-30 10:08:30 +00:00
|
|
|
|
2012-08-18 11:40:08 +00:00
|
|
|
# FlightGear packaging (to build a source tarball)
|
|
|
|
include( ConfigureCPack )
|
2011-10-22 15:07:09 +00:00
|
|
|
|
2012-08-18 11:40:08 +00:00
|
|
|
# FlightGear base package path
|
2011-11-01 17:05:54 +00:00
|
|
|
if (FG_DATA_DIR)
|
2012-08-18 11:40:08 +00:00
|
|
|
message(STATUS "Using explicit data directory for base package: ${FG_DATA_DIR}")
|
2011-11-01 17:05:54 +00:00
|
|
|
else()
|
2011-11-05 13:17:08 +00:00
|
|
|
set(FG_DATA_DIR "${CMAKE_INSTALL_PREFIX}/lib/FlightGear" CACHE PATH "Default location where data files are located")
|
2012-08-18 11:40:08 +00:00
|
|
|
message(STATUS "Using default data directory for base package: ${FG_DATA_DIR}")
|
2011-11-01 17:05:54 +00:00
|
|
|
endif()
|
2010-11-30 10:08:30 +00:00
|
|
|
|
2011-09-12 06:10:48 +00:00
|
|
|
# Change the default build type to something fast
|
|
|
|
if(NOT CMAKE_BUILD_TYPE)
|
2012-03-12 20:18:37 +00:00
|
|
|
set(CMAKE_BUILD_TYPE Release CACHE STRING
|
|
|
|
"Choose the type of build, options are: None Debug Release RelWithDebInfo MinSizeRel."
|
|
|
|
FORCE)
|
2011-09-12 06:10:48 +00:00
|
|
|
endif(NOT CMAKE_BUILD_TYPE)
|
|
|
|
|
2011-12-28 11:24:22 +00:00
|
|
|
if(NOT "$ENV{BUILD_ID}" STREQUAL "")
|
2012-03-12 20:18:37 +00:00
|
|
|
set(HUDSON_BUILD_ID $ENV{BUILD_ID})
|
|
|
|
set(HUDSON_BUILD_NUMBER $ENV{BUILD_NUMBER})
|
2012-08-26 13:28:51 +00:00
|
|
|
message(STATUS "running under Hudson/Jenkins, build-number is ${HUDSON_BUILD_NUMBER}")
|
2011-01-01 18:24:53 +00:00
|
|
|
else()
|
2012-03-12 20:18:37 +00:00
|
|
|
set(HUDSON_BUILD_NUMBER 0)
|
|
|
|
set(HUDSON_BUILD_ID "none")
|
2011-01-01 18:24:53 +00:00
|
|
|
endif()
|
|
|
|
|
2012-12-01 10:01:25 +00: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()
|
|
|
|
|
|
|
|
#####################################################################################
|
|
|
|
|
2011-09-21 16:13:13 +00:00
|
|
|
IF(APPLE)
|
|
|
|
set(EVENT_INPUT_DEFAULT 1)
|
2012-03-12 20:18:37 +00:00
|
|
|
|
2011-10-16 18:55:04 +00:00
|
|
|
find_library(CORESERVICES_LIBRARY CoreServices)
|
2011-11-20 13:23:52 +00:00
|
|
|
find_library(COCOA_LIBRARY Cocoa)
|
|
|
|
list(APPEND PLATFORM_LIBS ${COCOA_LIBRARY} ${CORESERVICES_LIBRARY})
|
2015-12-08 20:46:54 +00: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")
|
|
|
|
SET(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -mmacosx-version-min=10.7")
|
2016-07-03 13:38:14 +00:00
|
|
|
elseif(WIN32)
|
|
|
|
list(APPEND PLATFORM_LIBS "Shlwapi.lib")
|
2014-11-13 15:15:52 +00:00
|
|
|
elseif(${CMAKE_SYSTEM_NAME} MATCHES "Linux" OR
|
|
|
|
${CMAKE_SYSTEM_NAME} MATCHES "FreeBSD")
|
2015-03-17 23:33:57 +00:00
|
|
|
find_package(Threads REQUIRED)
|
2015-04-03 18:15:52 +00:00
|
|
|
find_package(X11 REQUIRED)
|
2015-04-11 20:58:55 +00:00
|
|
|
|
2013-12-09 00:13:44 +00:00
|
|
|
set(USE_DBUS_DEFAULT 1)
|
2011-12-04 13:37:25 +00:00
|
|
|
|
2014-11-13 15:15:52 +00:00
|
|
|
find_package(UDev)
|
2012-03-12 20:18:37 +00:00
|
|
|
if(UDEV_FOUND)
|
|
|
|
set(EVENT_INPUT_DEFAULT 1)
|
|
|
|
endif(UDEV_FOUND)
|
2014-01-23 16:46:49 +00:00
|
|
|
|
|
|
|
find_package(Speex)
|
|
|
|
find_package(Speexdsp)
|
|
|
|
if(SPEEX_FOUND AND SPEEXDSP_FOUND)
|
|
|
|
set(SYSTEM_SPEEX_DEFAULT 1)
|
|
|
|
endif(SPEEX_FOUND AND SPEEXDSP_FOUND)
|
|
|
|
|
|
|
|
find_package(Gsm)
|
|
|
|
if(GSM_FOUND)
|
|
|
|
set(SYSTEM_GSM_DEFAULT 1)
|
|
|
|
endif(GSM_FOUND)
|
2014-04-28 19:33:48 +00:00
|
|
|
|
|
|
|
find_package(Flite)
|
|
|
|
if(FLITE_FOUND)
|
|
|
|
set(SYSTEM_FLITE_DEFAULT 1)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
find_package(HtsEngine)
|
2014-04-30 07:26:58 +00:00
|
|
|
if(HTS_ENGINE_FOUND)
|
2014-04-28 19:33:48 +00:00
|
|
|
set(SYSTEM_HTS_ENGINE_DEFAULT 1)
|
|
|
|
endif()
|
2011-09-21 16:13:13 +00:00
|
|
|
endif()
|
|
|
|
|
2011-01-01 18:24:53 +00:00
|
|
|
find_package(Git)
|
|
|
|
if (GIT_FOUND)
|
2012-03-12 20:18:37 +00:00
|
|
|
execute_process(COMMAND git --git-dir ${PROJECT_SOURCE_DIR}/.git rev-parse HEAD
|
|
|
|
OUTPUT_VARIABLE REVISION
|
|
|
|
OUTPUT_STRIP_TRAILING_WHITESPACE)
|
|
|
|
message(STATUS "Git revision is ${REVISION}")
|
2011-01-01 18:24:53 +00:00
|
|
|
else()
|
2012-03-12 20:18:37 +00:00
|
|
|
set(REVISION "none")
|
2011-01-01 18:24:53 +00:00
|
|
|
endif()
|
|
|
|
|
2012-08-26 13:28:51 +00:00
|
|
|
# FlightGear build options
|
2012-10-04 18:57:35 +00:00
|
|
|
option(SIMGEAR_SHARED "Set to ON when SimGear was built as a shared library" OFF)
|
2012-08-26 13:28:51 +00:00
|
|
|
option(LOGGING "Set to ON to build FlightGear with logging support (default)" ON)
|
2014-02-09 13:10:42 +00:00
|
|
|
option(JSBSIM_TERRAIN "Set to ON to build FlightGear with JSBSim terrain handling code" ON)
|
2015-12-05 13:35:23 +00:00
|
|
|
option(SP_FDMS "Set to ON to build FlightGear with special-purpose FDMs" ON)
|
|
|
|
option(ENABLE_UIUC_MODEL "Set to ON to build FlightGear with UIUCModel FDM" ON)
|
|
|
|
option(ENABLE_LARCSIM "Set to ON to build FlightGear with LaRCsim FDM" ON)
|
2012-08-26 13:28:51 +00:00
|
|
|
option(ENABLE_YASIM "Set to ON to build FlightGear with YASIM FDM (default)" ON)
|
|
|
|
option(ENABLE_JSBSIM "Set to ON to build FlightGear with JSBSim FDM (default)" ON)
|
2012-03-12 20:18:37 +00:00
|
|
|
option(EVENT_INPUT "Set to ON to build FlightGear with event-based Input support" ${EVENT_INPUT_DEFAULT})
|
2012-08-26 13:28:51 +00:00
|
|
|
option(ENABLE_RTI "Set to ON to build FlightGear with RTI support" OFF)
|
2012-11-19 12:10:38 +00:00
|
|
|
option(ENABLE_PROFILE "Set to ON to build FlightGear with gperftools profiling support" OFF)
|
2012-09-19 13:28:25 +00:00
|
|
|
option(SYSTEM_SQLITE "Set to ON to build FlightGear with the system's SQLite3 library" OFF)
|
2013-09-27 18:24:19 +00:00
|
|
|
option(ENABLE_IAX "Set to ON to build FlightGear with IAXClient/fgcom built-in (default)" ON)
|
2013-12-09 00:13:44 +00:00
|
|
|
option(USE_DBUS "Set to ON to build FlightGear with DBus screensaver interaction (default on Linux)" ${USE_DBUS_DEFAULT})
|
2014-01-23 16:46:49 +00:00
|
|
|
option(SYSTEM_SPEEX "Set to ON to build IAXClient with the system's speex and speexdsp library" ${SYSTEM_SPEEX_DEFAULT})
|
|
|
|
option(SYSTEM_GSM "Set to ON to build IAXClient with the system's GSM library" ${SYSTEM_GSM_DEFAULT})
|
2014-04-28 19:33:48 +00:00
|
|
|
option(SYSTEM_FLITE "Set to ON to build Flightgear with the system's Flite library" ${SYSTEM_FLITE_DEFAULT})
|
|
|
|
option(SYSTEM_HTS_ENGINE "Set to ON to build Flightgear with the system's HTS Engine library" ${SYSTEM_HTS_ENGINE_DEFAULT})
|
2015-03-06 18:52:06 +00:00
|
|
|
option(FG_NIGHTLY "Set to ON to mark this as a nightly build" OFF)
|
2015-09-28 20:12:46 +00:00
|
|
|
option(ENABLE_DEV_WARNINGS "Set to ON to include developer-warnings" OFF)
|
2012-08-26 13:28:51 +00:00
|
|
|
|
|
|
|
# additional utilities
|
2013-02-12 16:38:46 +00:00
|
|
|
option(ENABLE_FGELEV "Set to ON to build the fgelev application (default)" ON)
|
2012-08-26 13:28:51 +00:00
|
|
|
option(WITH_FGPANEL "Set to ON to build the fgpanel application (default)" ON)
|
2013-02-12 16:38:46 +00:00
|
|
|
option(ENABLE_FGVIEWER "Set to ON to build the fgviewer application (default)" ON)
|
|
|
|
option(ENABLE_GPSSMOOTH "Set to ON to build the GPSsmooth application (default)" ON)
|
|
|
|
option(ENABLE_TERRASYNC "Set to ON to build the terrasync application (default)" ON)
|
|
|
|
option(ENABLE_FGJS "Set to ON to build the fgjs application (default)" ON)
|
|
|
|
option(ENABLE_JS_DEMO "Set to ON to build the js_demo application (default)" ON)
|
|
|
|
option(ENABLE_METAR "Set to ON to build the metar application (default)" ON)
|
2012-08-26 13:28:51 +00:00
|
|
|
option(ENABLE_TESTS "Set to ON to build test applications (default)" ON)
|
2013-09-27 14:05:45 +00:00
|
|
|
option(ENABLE_FGCOM "Set to ON to build the FGCom application (default)" ON)
|
2014-05-20 08:52:59 +00:00
|
|
|
option(ENABLE_FLITE "Set to ON to build the Flite text-to-speech module" ON)
|
2015-01-10 14:05:23 +00:00
|
|
|
option(ENABLE_QT "Set to ON to build the internal Qt launcher" ON)
|
2011-09-26 12:33:06 +00:00
|
|
|
|
2010-11-30 10:08:30 +00:00
|
|
|
if(LOGGING)
|
2012-03-12 20:18:37 +00:00
|
|
|
# nothing
|
2010-11-30 10:08:30 +00:00
|
|
|
else()
|
2012-03-12 20:18:37 +00:00
|
|
|
set(FG_NDEBUG 1)
|
2010-11-30 10:08:30 +00:00
|
|
|
endif()
|
|
|
|
|
2014-01-29 12:50:06 +00:00
|
|
|
if(JSBSIM_TERRAIN)
|
|
|
|
set(JSBSIM_USE_GROUNDREACTIONS 1)
|
|
|
|
endif()
|
|
|
|
|
2011-06-12 13:17:03 +00:00
|
|
|
if(SP_FDMS)
|
2012-03-12 20:18:37 +00:00
|
|
|
set(ENABLE_SP_FDM 1)
|
2010-11-30 10:08:30 +00:00
|
|
|
endif()
|
|
|
|
|
2013-09-27 18:24:19 +00:00
|
|
|
if(ENABLE_FGCOM)
|
|
|
|
set(ENABLE_IAX 1)
|
2014-05-31 11:50:28 +00:00
|
|
|
include_directories(${PROJECT_SOURCE_DIR}/3rdparty/iaxclient/lib ) # for iaxclient.h
|
2013-09-27 18:24:19 +00:00
|
|
|
endif()
|
|
|
|
|
2012-08-18 11:40:08 +00:00
|
|
|
# Setup MSVC 3rd party directories
|
|
|
|
include( ConfigureMsvc3rdParty )
|
2011-01-01 21:22:37 +00:00
|
|
|
|
2011-09-21 16:13:13 +00:00
|
|
|
if(EVENT_INPUT)
|
2012-08-18 11:40:08 +00:00
|
|
|
if(APPLE)
|
2012-03-12 20:18:37 +00:00
|
|
|
elseif(CMAKE_SYSTEM_NAME MATCHES "Linux")
|
|
|
|
if(NOT UDEV_FOUND)
|
|
|
|
message(WARNING "UDev not found, event input is disabled!")
|
|
|
|
set(EVENT_INPUT 0)
|
|
|
|
else()
|
2012-09-22 12:20:49 +00:00
|
|
|
add_definitions(-DWITH_EVENTINPUT)
|
2012-03-12 20:18:37 +00:00
|
|
|
set(EVENT_INPUT_LIBRARIES ${UDEV_LIBRARIES})
|
2012-08-18 11:40:08 +00:00
|
|
|
message(STATUS "event-based input enabled. Using ${UDEV_LIBRARIES}")
|
2012-03-12 20:18:37 +00:00
|
|
|
endif()
|
|
|
|
else()
|
2012-08-18 11:40:08 +00:00
|
|
|
message(WARNING "event-based input is not supported on this platform yet")
|
2012-03-12 20:18:37 +00:00
|
|
|
endif()
|
2011-12-04 13:37:25 +00:00
|
|
|
|
2012-03-12 20:18:37 +00:00
|
|
|
# Keep PLIB INPUT enabled as long as EventInput does not replace current joystick configurations.
|
|
|
|
set(ENABLE_PLIB_JOYSTICK 1)
|
2011-09-21 16:13:13 +00:00
|
|
|
else(EVENT_INPUT)
|
2012-03-12 20:18:37 +00:00
|
|
|
set(ENABLE_PLIB_JOYSTICK 1)
|
2011-09-21 16:13:13 +00:00
|
|
|
endif(EVENT_INPUT)
|
2011-01-01 21:22:37 +00:00
|
|
|
|
2010-11-30 10:08:30 +00:00
|
|
|
# check required dependencies
|
2012-03-12 20:18:37 +00:00
|
|
|
find_package(Boost REQUIRED)
|
|
|
|
find_package(ZLIB REQUIRED)
|
|
|
|
find_package(OpenGL REQUIRED)
|
|
|
|
find_package(OpenAL REQUIRED)
|
2014-08-09 17:13:39 +00:00
|
|
|
find_package(OpenSceneGraph 3.2.0 REQUIRED
|
|
|
|
osgText
|
|
|
|
osgSim
|
|
|
|
osgDB
|
|
|
|
osgParticle
|
|
|
|
osgFX
|
|
|
|
osgUtil
|
|
|
|
osgViewer
|
|
|
|
osgGA
|
|
|
|
)
|
2011-01-06 16:56:07 +00:00
|
|
|
|
2014-01-18 14:50:31 +00:00
|
|
|
if (MSVC)
|
|
|
|
find_package(CrashRpt)
|
|
|
|
if (CRASHRPT_FOUND)
|
|
|
|
set(HAVE_CRASHRPT 1)
|
|
|
|
message(STATUS "Using CrashRpt")
|
|
|
|
include_directories( ${CRASHRPT_INCLUDE_DIR})
|
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
|
2013-09-25 12:54:16 +00:00
|
|
|
##############################################################################
|
|
|
|
## Sqlite3 setup
|
|
|
|
|
2012-09-19 13:28:25 +00:00
|
|
|
if (SYSTEM_SQLITE)
|
|
|
|
find_package(SQLite3 REQUIRED)
|
2015-01-07 09:38:02 +00:00
|
|
|
|
2012-09-19 13:28:25 +00:00
|
|
|
message(STATUS "Using system SQLite3 library")
|
2013-09-25 12:54:16 +00:00
|
|
|
else()
|
|
|
|
set(SQLITE3_INCLUDED_DIR "${CMAKE_SOURCE_DIR}/3rdparty/sqlite3")
|
|
|
|
# this target is defined in src/Navaids/CMakeLists.txt
|
|
|
|
list(APPEND SQLITE3_LIBRARY fgsqlite3)
|
2012-09-19 13:28:25 +00:00
|
|
|
endif (SYSTEM_SQLITE)
|
|
|
|
|
2012-09-21 20:32:07 +00:00
|
|
|
# Sqlite always depends on the threading lib
|
|
|
|
list(APPEND SQLITE3_LIBRARY ${CMAKE_THREAD_LIBS_INIT})
|
|
|
|
|
2013-12-09 00:13:44 +00:00
|
|
|
##############################################################################
|
|
|
|
## DBus setup
|
|
|
|
|
|
|
|
if (USE_DBUS)
|
|
|
|
include(FindPkgConfig)
|
|
|
|
if (PKG_CONFIG_FOUND)
|
|
|
|
pkg_check_modules(DBUS dbus-1)
|
|
|
|
endif (PKG_CONFIG_FOUND) #if we don't have pkg-config, assume we don't have libdbus-1-dev either http://packages.debian.org/sid/libdbus-1-dev
|
|
|
|
if (DBUS_FOUND)
|
|
|
|
set(HAVE_DBUS 1)
|
|
|
|
message(STATUS "Using DBus")
|
|
|
|
include_directories( ${DBUS_INCLUDE_DIRS})
|
|
|
|
else()
|
|
|
|
message(STATUS "DBus not found, screensaver control disabled")
|
|
|
|
endif (DBUS_FOUND)
|
|
|
|
else()
|
|
|
|
endif (USE_DBUS)
|
|
|
|
|
2014-12-26 12:20:51 +00:00
|
|
|
##############################################################################
|
|
|
|
## Qt5 setup setup
|
2015-01-10 14:05:23 +00:00
|
|
|
if (ENABLE_QT)
|
|
|
|
message(STATUS "Qt launcher enabled, checking for Qt 5.1 / qmake")
|
|
|
|
find_package(Qt5 5.1 COMPONENTS Widgets)
|
|
|
|
if (Qt5Widgets_FOUND)
|
|
|
|
message(STATUS "Will enable Qt launcher GUI")
|
2015-03-12 08:44:51 +00:00
|
|
|
message(STATUS " Qt5Widgets version: ${Qt5Widgets_VERSION_STRING}")
|
|
|
|
message(STATUS " Qt5Widgets include dir: ${Qt5Widgets_INCLUDE_DIRS}")
|
2015-01-10 14:05:23 +00:00
|
|
|
set(HAVE_QT 1)
|
|
|
|
endif()
|
|
|
|
endif (ENABLE_QT)
|
2013-09-25 12:54:16 +00:00
|
|
|
##############################################################################
|
|
|
|
|
2011-01-14 21:37:39 +00:00
|
|
|
find_package(PLIB REQUIRED puaux pu js fnt)
|
2012-01-31 20:42:37 +00:00
|
|
|
|
2013-09-28 13:17:53 +00:00
|
|
|
# FlightGear and SimGear versions need to match
|
|
|
|
find_package(SimGear ${FLIGHTGEAR_VERSION} REQUIRED)
|
2010-11-30 10:08:30 +00:00
|
|
|
|
2013-09-28 13:15:47 +00:00
|
|
|
##############################################################################
|
|
|
|
|
2012-03-12 20:18:37 +00:00
|
|
|
check_include_file(unistd.h HAVE_UNISTD_H)
|
2010-12-25 23:44:02 +00:00
|
|
|
check_include_file(sys/time.h HAVE_SYS_TIME_H)
|
2012-03-12 20:18:37 +00:00
|
|
|
check_include_file(windows.h HAVE_WINDOWS_H)
|
2010-12-25 23:44:02 +00:00
|
|
|
|
2012-11-15 12:56:31 +00:00
|
|
|
if(ENABLE_PROFILE)
|
2012-11-19 12:10:38 +00:00
|
|
|
find_package(GooglePerfTools REQUIRED)
|
|
|
|
set(FG_HAVE_GPERFTOOLS 1)
|
|
|
|
message(STATUS "Built-in profiler using gperftools available")
|
2012-11-15 12:56:31 +00:00
|
|
|
endif()
|
2012-11-15 10:55:25 +00:00
|
|
|
|
2011-09-05 18:25:30 +00:00
|
|
|
if(ENABLE_RTI)
|
2013-02-15 23:03:40 +00:00
|
|
|
message(STATUS "RTI: ENABLED")
|
2011-09-05 18:25:30 +00:00
|
|
|
find_package(RTI)
|
|
|
|
if(RTI_FOUND)
|
|
|
|
set(FG_HAVE_HLA 1)
|
|
|
|
endif(RTI_FOUND)
|
2013-02-15 23:03:40 +00:00
|
|
|
else()
|
|
|
|
message(STATUS "RTI: DISABLED")
|
2011-09-05 18:25:30 +00:00
|
|
|
endif(ENABLE_RTI)
|
2010-12-26 12:55:52 +00:00
|
|
|
|
2010-11-30 10:08:30 +00:00
|
|
|
if(CMAKE_COMPILER_IS_GNUCXX)
|
2012-05-05 07:42:25 +00:00
|
|
|
set(WARNING_FLAGS_CXX "-Wall")
|
|
|
|
set(WARNING_FLAGS_C "-Wall")
|
2010-11-30 10:08:30 +00:00
|
|
|
endif(CMAKE_COMPILER_IS_GNUCXX)
|
|
|
|
|
2015-01-07 09:38:02 +00:00
|
|
|
if (CMAKE_CXX_COMPILER_ID STREQUAL "Clang")
|
2015-09-28 01:40:34 +00:00
|
|
|
set(WARNING_FLAGS_CXX "-Wall -Wno-overloaded-virtual \
|
|
|
|
-Wno-redeclared-class-member \
|
|
|
|
-Wno-inconsistent-missing-override \
|
|
|
|
-Wno-unused-local-typedef")
|
|
|
|
|
2015-02-11 15:48:33 +00:00
|
|
|
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++")
|
2015-09-28 01:40:34 +00:00
|
|
|
set(WARNING_FLAGS_C "-Wall")
|
2015-01-07 09:38:02 +00:00
|
|
|
endif()
|
2012-03-25 17:46:50 +00:00
|
|
|
|
2010-11-30 10:08:30 +00:00
|
|
|
if(WIN32)
|
|
|
|
|
|
|
|
if(MSVC)
|
2016-06-09 15:19:34 +00:00
|
|
|
set(MSVC_FLAGS "-DNOMINMAX -D_USE_MATH_DEFINES -D_CRT_SECURE_NO_WARNINGS -D_SCL_SECURE_NO_WARNINGS -D__CRT_NONSTDC_NO_WARNINGS /MP")
|
2012-09-03 15:34:01 +00:00
|
|
|
if (${MSVC_VERSION} GREATER 1599)
|
2012-03-12 20:18:37 +00:00
|
|
|
set( MSVC_LD_FLAGS "/FORCE:MULTIPLE" )
|
2012-09-03 15:34:01 +00:00
|
|
|
endif (${MSVC_VERSION} GREATER 1599)
|
2016-06-01 21:58:03 +00:00
|
|
|
|
|
|
|
if (${MSVC_VERSION} GREATER 1899)
|
|
|
|
# needed for debug builds with VS2015
|
|
|
|
set( MSVC_FLAGS "${MSVC_FLAGS} /bigobj" )
|
|
|
|
endif()
|
2010-11-30 10:08:30 +00:00
|
|
|
endif(MSVC)
|
|
|
|
|
|
|
|
set(NOMINMAX 1)
|
2012-03-12 20:18:37 +00:00
|
|
|
endif(WIN32)
|
2010-11-30 10:08:30 +00:00
|
|
|
|
2015-02-12 16:24:27 +00:00
|
|
|
set (BOOST_CXX_FLAGS "-DBOOST_BIMAP_DISABLE_SERIALIZATION")
|
2012-05-12 15:20:28 +00:00
|
|
|
|
2012-05-05 07:42:25 +00:00
|
|
|
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${WARNING_FLAGS_C} ${MSVC_FLAGS} -D_REENTRANT")
|
2012-05-12 15:20:28 +00:00
|
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${WARNING_FLAGS_CXX} ${MSVC_FLAGS} -D_REENTRANT ${BOOST_CXX_FLAGS}")
|
2011-01-28 14:15:20 +00:00
|
|
|
set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} ${MSVC_LD_FLAGS}")
|
2010-11-30 10:08:30 +00:00
|
|
|
|
2010-12-26 12:55:52 +00:00
|
|
|
include_directories(${OPENSCENEGRAPH_INCLUDE_DIRS}
|
2012-03-12 20:18:37 +00:00
|
|
|
${Boost_INCLUDE_DIRS}
|
|
|
|
${ZLIB_INCLUDE_DIR}
|
|
|
|
${OPENGL_INCLUDE_DIR}
|
|
|
|
${OPENAL_INCLUDE_DIR}
|
2014-07-30 10:47:33 +00:00
|
|
|
${SIMGEAR_INCLUDE_DIRS}
|
2013-09-25 12:54:16 +00:00
|
|
|
${PLIB_INCLUDE_DIR}
|
|
|
|
${SQLITE3_INCLUDED_DIR} )
|
2010-11-30 10:08:30 +00:00
|
|
|
|
2013-05-19 14:29:49 +00:00
|
|
|
include_directories(${PROJECT_SOURCE_DIR})
|
2010-11-30 10:08:30 +00:00
|
|
|
include_directories(${PROJECT_SOURCE_DIR}/src)
|
2011-01-01 21:46:16 +00:00
|
|
|
# following is needed, because config.h is include 'bare', whereas
|
|
|
|
# version.h is included as <Include/version.h> - this should be cleaned up
|
|
|
|
include_directories(${PROJECT_BINARY_DIR}/src)
|
2010-11-30 10:08:30 +00:00
|
|
|
include_directories(${PROJECT_BINARY_DIR}/src/Include)
|
|
|
|
|
2014-03-10 09:32:03 +00:00
|
|
|
if (ENABLE_FLITE)
|
|
|
|
include_directories(${PROJECT_SOURCE_DIR}/3rdparty/hts_engine_API/include )
|
|
|
|
include_directories(${PROJECT_SOURCE_DIR}/3rdparty/flite_hts_engine/include )
|
|
|
|
endif()
|
|
|
|
|
2010-11-30 10:08:30 +00:00
|
|
|
add_definitions(-DHAVE_CONFIG_H)
|
|
|
|
|
2011-06-02 22:01:17 +00:00
|
|
|
check_function_exists(mkfifo HAVE_MKFIFO)
|
|
|
|
|
2010-11-30 10:08:30 +00:00
|
|
|
# configure a header file to pass some of the CMake settings
|
|
|
|
# to the source code
|
|
|
|
configure_file (
|
2012-03-12 20:18:37 +00:00
|
|
|
"${PROJECT_SOURCE_DIR}/src/Include/config_cmake.h.in"
|
|
|
|
"${PROJECT_BINARY_DIR}/src/Include/config.h"
|
|
|
|
)
|
2011-01-01 18:24:53 +00:00
|
|
|
|
|
|
|
#and the same for the version header
|
|
|
|
configure_file (
|
2012-03-12 20:18:37 +00:00
|
|
|
"${PROJECT_SOURCE_DIR}/src/Include/version.h.cmake-in"
|
|
|
|
"${PROJECT_BINARY_DIR}/src/Include/version.h"
|
|
|
|
)
|
2011-01-01 18:24:53 +00:00
|
|
|
|
2013-09-25 12:54:16 +00:00
|
|
|
add_subdirectory(3rdparty)
|
2010-11-30 10:08:30 +00:00
|
|
|
add_subdirectory(utils)
|
2013-05-19 14:29:49 +00:00
|
|
|
add_subdirectory(src)
|
2011-11-04 09:38:07 +00:00
|
|
|
add_subdirectory(man)
|
2010-12-28 13:43:14 +00:00
|
|
|
|
|
|
|
#-----------------------------------------------------------------------------
|
|
|
|
### uninstall target
|
|
|
|
#-----------------------------------------------------------------------------
|
|
|
|
CONFIGURE_FILE(
|
2012-03-12 20:18:37 +00:00
|
|
|
"${CMAKE_CURRENT_SOURCE_DIR}/CMakeModules/cmake_uninstall.cmake.in"
|
|
|
|
"${CMAKE_CURRENT_BINARY_DIR}/cmake_uninstall.cmake"
|
|
|
|
IMMEDIATE @ONLY)
|
2010-12-28 13:43:14 +00:00
|
|
|
ADD_CUSTOM_TARGET(uninstall
|
2012-03-12 20:18:37 +00:00
|
|
|
"${CMAKE_COMMAND}" -P "${CMAKE_CURRENT_BINARY_DIR}/cmake_uninstall.cmake")
|