2010-11-30 10:08:30 +00:00
|
|
|
cmake_minimum_required (VERSION 2.6)
|
|
|
|
|
|
|
|
include (CheckFunctionExists)
|
|
|
|
include (CheckCSourceCompiles)
|
|
|
|
include (CPack)
|
|
|
|
|
|
|
|
project(FlightGear)
|
|
|
|
|
|
|
|
file(READ version FLIGHTGEAR_VERSION)
|
|
|
|
|
|
|
|
#packaging
|
|
|
|
SET(CPACK_RESOURCE_FILE_LICENSE "${PROJECT_SOURCE_DIR}/COPYING")
|
|
|
|
SET(CPACK_RESOURCE_FILE_README "${PROJECT_SOURCE_DIR}/README")
|
|
|
|
|
|
|
|
# We have some custom .cmake scripts not in the official distribution.
|
|
|
|
set(CMAKE_MODULE_PATH "${PROJECT_SOURCE_DIR}/CMakeModules;${CMAKE_MODULE_PATH}")
|
|
|
|
|
|
|
|
# autoconf compatibility
|
|
|
|
set(PKGLIBDIR "foo")
|
|
|
|
|
|
|
|
option(LOGGING "Set to OFF to build FlightGear without logging" ON)
|
|
|
|
|
|
|
|
option(SP_FDMS "Set to ON to build FlightGear with special-purpose FDMs" OFF)
|
|
|
|
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)
|
|
|
|
option(ENABLE_YASIM "Set to ON to build FlightGear with YASIM FDM" ON)
|
|
|
|
option(ENABLE_JSBSIM "Set to ON to build FlightGear with JSBSim FDM" ON)
|
|
|
|
|
|
|
|
option(ATCDCL "Set to ON to build FlightGear with Dave Luff's ATC code" OFF)
|
|
|
|
option(EVENT_INPUT "Set to ON to build FlightGear with event-based Input support" OFF)
|
|
|
|
|
|
|
|
if(LOGGING)
|
|
|
|
# nothing
|
|
|
|
else()
|
|
|
|
set(FG_NDEBUG 1)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if(${SP_FDMS})
|
|
|
|
set(ENABLE_SP_FDM 1)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if(ATCDCL)
|
|
|
|
set(ENABLE_ATCDCL 1)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if(EVENT_INPUT)
|
|
|
|
message(STATUS "checking event-based Input")
|
|
|
|
IF(APPLE)
|
|
|
|
|
|
|
|
elseif(CMAKE_SYSTEM_NAME MATCHES "Linux")
|
|
|
|
|
|
|
|
else()
|
|
|
|
message(WARNING "event input is not supported on this platform yet")
|
|
|
|
endif()
|
|
|
|
else(EVENT_INPUT)
|
|
|
|
set(ENABLE_PLIB_JOYSTICK 1)
|
|
|
|
endif(EVENT_INPUT)
|
|
|
|
|
|
|
|
# check required dependencies
|
|
|
|
find_package(Boost REQUIRED)
|
|
|
|
find_package(ZLIB REQUIRED)
|
|
|
|
find_package(Threads REQUIRED)
|
|
|
|
find_package(OpenGL REQUIRED)
|
|
|
|
find_package(OpenAL REQUIRED)
|
|
|
|
find_package(ALUT REQUIRED)
|
|
|
|
find_package(OpenSceneGraph 2.8.2 REQUIRED osgText osgSim osgDB osgParticle osgFX osgUtil osgViewer osgGA)
|
2010-12-22 19:51:17 +00:00
|
|
|
find_package(PLIB REQUIRED puaux pu js fnt)
|
2010-11-30 10:08:30 +00:00
|
|
|
find_package(SimGear 2.0.0 REQUIRED)
|
|
|
|
|
|
|
|
find_path (HAVE_SYS_TIME_H sys/time.h )
|
|
|
|
|
|
|
|
if(CMAKE_COMPILER_IS_GNUCXX)
|
|
|
|
set(WARNING_FLAGS -Wall)
|
|
|
|
endif(CMAKE_COMPILER_IS_GNUCXX)
|
|
|
|
|
|
|
|
if(WIN32)
|
|
|
|
|
|
|
|
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)
|
|
|
|
|
|
|
|
set(MSVC_FLAGS "-DNOMINMAX -D_USE_MATH_DEFINES -D_CRT_SECURE_NO_WARNINGS -D__CRT_NONSTDC_NO_WARNINGS")
|
|
|
|
endif(MSVC)
|
|
|
|
|
|
|
|
set(NOMINMAX 1)
|
|
|
|
endif(WIN32)
|
|
|
|
|
|
|
|
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${WARNING_FLAGS} ${MSVC_FLAGS}")
|
|
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${WARNING_FLAGS} ${MSVC_FLAGS}")
|
|
|
|
|
|
|
|
include_directories(${OPENSCENEGRAPH_INCLUDE_DIRS}
|
|
|
|
${Boost_INCLUDE_DIRS}
|
|
|
|
${ZLIB_INCLUDE_DIR}
|
|
|
|
${ALUT_INCLUDE_DIR}
|
|
|
|
${OPENAL_INCLUDE_DIR}
|
|
|
|
${SIMGEAR_INCLUDE_DIR}
|
|
|
|
${PLIB_INCLUDE_DIR} )
|
|
|
|
|
|
|
|
include_directories(${PROJECT_SOURCE_DIR}/src)
|
|
|
|
include_directories(${PROJECT_BINARY_DIR}/src/Include)
|
|
|
|
|
|
|
|
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}/src/Include/config_cmake.h.in"
|
|
|
|
"${PROJECT_BINARY_DIR}/src/Include/config.h"
|
|
|
|
)
|
|
|
|
|
|
|
|
add_subdirectory(src)
|
|
|
|
add_subdirectory(utils)
|