2022-09-21 14:49:24 +00:00
cmake_minimum_required ( VERSION 3.1.0 )
2022-01-29 12:57:04 +00:00
2020-01-31 22:58:21 +00:00
# for link time optimization, remove if cmake version is >= 3.9
2021-01-20 22:32:40 +00:00
if ( POLICY CMP0069 ) # LTO
2022-06-15 08:47:49 +00:00
cmake_policy ( SET CMP0069 NEW )
2021-01-20 22:32:40 +00:00
endif ( )
# for position-independent executable, remove if cmake version is >= 3.14
if ( POLICY CMP0083 )
2022-06-15 08:47:49 +00:00
cmake_policy ( SET CMP0083 NEW )
2020-01-31 22:58:21 +00:00
endif ( )
2021-09-01 23:06:27 +00:00
# to link with freetype library
if ( POLICY CMP0079 )
2022-06-15 08:47:49 +00:00
cmake_policy ( SET CMP0079 NEW )
endif ( )
# don't add /W3 flag by default for MSVC
if ( POLICY CMP0092 )
cmake_policy ( SET CMP0092 NEW )
2021-09-01 23:06:27 +00:00
endif ( )
2022-09-10 10:55:14 +00:00
# set the timestamps of extracted contents to the time of extraction
if ( POLICY CMP0135 )
cmake_policy ( SET CMP0135 NEW )
endif ( )
2022-06-15 08:47:49 +00:00
project ( OpenMW )
set ( CMAKE_CXX_STANDARD 20 )
set ( CMAKE_CXX_STANDARD_REQUIRED ON )
2022-07-04 21:00:26 +00:00
set ( CMAKE_CXX_EXTENSIONS OFF )
2022-06-15 08:47:49 +00:00
include ( GNUInstallDirs )
2021-01-27 00:10:50 +00:00
option ( OPENMW_GL4ES_MANUAL_INIT "Manually initialize gl4es. This is more reliable on platforms without a windowing system. Requires gl4es to be configured with -DNOEGL=ON -DNO_LOADER=ON -DNO_INIT_CONSTRUCTOR=ON." OFF )
if ( OPENMW_GL4ES_MANUAL_INIT )
add_definitions ( -DOPENMW_GL4ES_MANUAL_INIT )
endif ( )
2017-09-10 17:30:10 +00:00
# Apps and tools
2018-11-14 09:01:12 +00:00
option ( BUILD_OPENMW "Build OpenMW" ON )
option ( BUILD_LAUNCHER "Build Launcher" ON )
option ( BUILD_WIZARD "Build Installation Wizard" ON )
option ( BUILD_MWINIIMPORTER "Build MWiniImporter" ON )
option ( BUILD_OPENCS "Build OpenMW Construction Set" ON )
option ( BUILD_ESSIMPORTER "Build ESS (Morrowind save game) importer" ON )
option ( BUILD_BSATOOL "Build BSA extractor" ON )
option ( BUILD_ESMTOOL "Build ESM inspector" ON )
option ( BUILD_NIFTEST "Build nif file tester" ON )
option ( BUILD_DOCS "Build documentation." OFF )
2017-09-10 17:30:10 +00:00
option ( BUILD_WITH_CODE_COVERAGE "Enable code coverage with gconv" OFF )
2018-11-14 09:01:12 +00:00
option ( BUILD_UNITTESTS "Enable Unittests with Google C++ Unittest" OFF )
2021-03-24 23:59:44 +00:00
option ( BUILD_BENCHMARKS "Build benchmarks with Google Benchmark" OFF )
2021-06-29 01:49:21 +00:00
option ( BUILD_NAVMESHTOOL "Build navmesh tool" ON )
2021-11-21 14:28:40 +00:00
option ( BUILD_BULLETOBJECTTOOL "Build Bullet object tool" ON )
2023-03-10 00:19:15 +00:00
option ( BUILD_OPENCS_TESTS "Build OpenMW Construction Set tests" OFF )
2017-09-10 17:30:10 +00:00
2020-07-17 14:23:12 +00:00
set ( OpenGL_GL_PREFERENCE LEGACY ) # Use LEGACY as we use GL2; GLNVD is for GL3 and up.
2023-03-10 00:19:15 +00:00
if ( BUILD_LAUNCHER OR BUILD_OPENCS OR BUILD_WIZARD OR BUILD_OPENCS_TESTS )
2023-03-10 14:01:18 +00:00
set ( USE_QT TRUE )
2023-03-10 00:19:15 +00:00
else ( )
set ( USE_QT FALSE )
2017-09-10 17:30:10 +00:00
endif ( )
2015-02-15 05:34:43 +00:00
# If the user doesn't supply a CMAKE_BUILD_TYPE via command line, choose one for them.
IF ( NOT CMAKE_BUILD_TYPE )
SET ( CMAKE_BUILD_TYPE RelWithDebInfo CACHE STRING
2015-08-19 09:09:38 +00:00
" C h o o s e t h e t y p e o f b u i l d , o p t i o n s a r e : None ( CMAKE_CXX_FLAGS or CMAKE_C_FLAGS used ) D e b u g R e l e a s e R e l W i t h D e b I n f o M i n S i z e R e l . "
2015-02-15 05:34:43 +00:00
F O R C E )
2015-08-19 09:09:38 +00:00
set_property ( CACHE CMAKE_BUILD_TYPE PROPERTY STRINGS None Debug Release RelWithDebInfo MinSizeRel )
2015-02-15 05:34:43 +00:00
ENDIF ( )
2012-01-29 19:28:05 +00:00
if ( APPLE )
set ( APP_BUNDLE_NAME "${CMAKE_PROJECT_NAME}.app" )
set ( APP_BUNDLE_DIR "${OpenMW_BINARY_DIR}/${APP_BUNDLE_NAME}" )
endif ( APPLE )
2011-03-27 19:28:46 +00:00
2011-10-22 11:55:06 +00:00
set ( CMAKE_MODULE_PATH ${ CMAKE_SOURCE_DIR } /cmake/ )
2016-01-05 12:37:17 +00:00
if ( ANDROID )
set ( CMAKE_FIND_ROOT_PATH ${ OPENMW_DEPENDENCIES_DIR } "${CMAKE_FIND_ROOT_PATH}" )
endif ( )
2011-07-08 12:24:09 +00:00
# Version
2014-02-19 13:19:08 +00:00
message ( STATUS "Configuring OpenMW..." )
2014-02-19 12:43:14 +00:00
set ( OPENMW_VERSION_MAJOR 0 )
2022-08-09 20:33:09 +00:00
set ( OPENMW_VERSION_MINOR 49 )
2015-11-09 11:03:27 +00:00
set ( OPENMW_VERSION_RELEASE 0 )
2014-02-19 12:43:14 +00:00
2014-02-19 13:19:08 +00:00
set ( OPENMW_VERSION_COMMITHASH "" )
set ( OPENMW_VERSION_TAGHASH "" )
2018-12-12 09:27:09 +00:00
set ( OPENMW_VERSION_COMMITDATE "" )
2014-02-19 13:19:08 +00:00
2014-02-19 12:43:14 +00:00
set ( OPENMW_VERSION "${OPENMW_VERSION_MAJOR}.${OPENMW_VERSION_MINOR}.${OPENMW_VERSION_RELEASE}" )
2020-07-17 14:23:12 +00:00
set ( OPENMW_DOC_BASEURL "https://openmw.readthedocs.io/en/stable/" )
2020-04-18 20:54:21 +00:00
2014-12-30 21:37:33 +00:00
set ( GIT_CHECKOUT FALSE )
2014-02-19 12:43:14 +00:00
if ( EXISTS ${ PROJECT_SOURCE_DIR } /.git )
2017-03-05 18:28:29 +00:00
find_package ( Git )
if ( GIT_FOUND )
set ( GIT_CHECKOUT TRUE )
else ( GIT_FOUND )
message ( WARNING "Git executable not found" )
endif ( GIT_FOUND )
2011-07-08 12:24:09 +00:00
2018-12-17 15:30:12 +00:00
if ( GIT_FOUND )
execute_process (
C O M M A N D $ { G I T _ E X E C U T A B L E } l o g - 1 - - f o r m a t = ' % a I '
W O R K I N G _ D I R E C T O R Y $ { P R O J E C T _ S O U R C E _ D I R }
R E S U L T _ V A R I A B L E E X I T C O D E 3
O U T P U T _ V A R I A B L E O P E N M W _ V E R S I O N _ C O M M I T D A T E
O U T P U T _ S T R I P _ T R A I L I N G _ W H I T E S P A C E )
if ( NOT EXITCODE3 )
string ( SUBSTRING ${ OPENMW_VERSION_COMMITDATE } 1 10 OPENMW_VERSION_COMMITDATE )
endif ( NOT EXITCODE3 )
endif ( GIT_FOUND )
2017-03-05 18:28:29 +00:00
endif ( EXISTS ${ PROJECT_SOURCE_DIR } /.git )
2011-07-08 12:24:09 +00:00
2014-02-19 13:19:08 +00:00
# Macros
include ( OpenMWMacros )
2021-01-20 19:19:36 +00:00
include ( WholeArchive )
2011-07-08 12:24:09 +00:00
2011-07-08 12:52:34 +00:00
# doxygen main page
2014-10-12 09:28:56 +00:00
configure_file ( "${OpenMW_SOURCE_DIR}/docs/mainpage.hpp.cmake" "${OpenMW_BINARY_DIR}/docs/mainpage.hpp" )
2011-07-08 12:52:34 +00:00
2012-12-10 09:32:00 +00:00
option ( BOOST_STATIC "Link static build of Boost into the binaries" FALSE )
2013-06-18 12:31:47 +00:00
option ( SDL2_STATIC "Link static build of SDL into the binaries" FALSE )
2023-02-05 11:30:28 +00:00
option ( QT_STATIC "Link static build of Qt into the binaries" FALSE )
2012-03-17 19:03:37 +00:00
2021-01-22 21:33:07 +00:00
option ( OPENMW_USE_SYSTEM_BULLET "Use system provided bullet physics library" ON )
MSVC: extern/ tweaks to make it build
Not everything is supported but it does build with the following CMakeSettings.json
variables and dependencies from vcpkg:
"variables": [
{ "name": "OPENMW_USE_SYSTEM_BULLET", "value": "False", "type": "BOOL" },
{ "name": "OPENMW_USE_SYSTEM_MYGUI", "value": "False", "type": "BOOL" },
{ "name": "OPENMW_USE_SYSTEM_OSG", "value": "False", "type": "BOOL" },
{ "name": "BULLET_STATIC", "value": "True", "type": "BOOL" },
{ "name": "OSG_STATIC", "value": "False", "type": "BOOL" },
{ "name": "MYGUI_STATIC", "value": "False", "type": "BOOL" }
],
What works: it builds
What does not work: Not all DLLs are copied into the output directory with this set up
(SDL2, MyGUI, Bullet, OSG, are not copied).
2021-03-16 02:56:33 +00:00
if ( OPENMW_USE_SYSTEM_BULLET )
set ( _bullet_static_default OFF )
else ( )
set ( _bullet_static_default ON )
endif ( )
option ( BULLET_STATIC "Link static build of Bullet into the binaries" ${ _bullet_static_default } )
2021-01-22 21:33:07 +00:00
2021-01-20 02:25:46 +00:00
option ( OPENMW_USE_SYSTEM_OSG "Use system provided OpenSceneGraph libraries" ON )
2021-01-22 21:33:07 +00:00
if ( OPENMW_USE_SYSTEM_OSG )
set ( _osg_static_default OFF )
else ( )
set ( _osg_static_default ON )
2021-01-22 19:37:07 +00:00
endif ( )
2021-01-22 21:33:07 +00:00
option ( OSG_STATIC "Link static build of OpenSceneGraph into the binaries" ${ _osg_static_default } )
2021-01-20 02:25:46 +00:00
option ( OPENMW_USE_SYSTEM_MYGUI "Use system provided mygui library" ON )
2021-01-22 21:33:07 +00:00
if ( OPENMW_USE_SYSTEM_MYGUI )
set ( _mygui_static_default OFF )
else ( )
set ( _mygui_static_default ON )
2021-01-22 19:37:07 +00:00
endif ( )
2021-01-22 21:33:07 +00:00
option ( MYGUI_STATIC "Link static build of Mygui into the binaries" ${ _mygui_static_default } )
2021-01-20 02:25:46 +00:00
2021-01-24 01:43:43 +00:00
option ( OPENMW_USE_SYSTEM_RECASTNAVIGATION "Use system provided recastnavigation library" OFF )
if ( OPENMW_USE_SYSTEM_RECASTNAVIGATION )
set ( _recastnavigation_static_default OFF )
2021-02-21 00:03:36 +00:00
find_package ( RecastNavigation REQUIRED )
2021-01-24 01:43:43 +00:00
else ( )
set ( _recastnavigation_static_default ON )
endif ( )
option ( RECASTNAVIGATION_STATIC "Build recastnavigation static libraries" ${ _recastnavigation_static_default } )
2021-10-11 17:34:03 +00:00
option ( OPENMW_USE_SYSTEM_SQLITE3 "Use system provided SQLite3 library" ON )
2022-01-29 14:14:06 +00:00
option ( OPENMW_USE_SYSTEM_BENCHMARK "Use system Google Benchmark library." OFF )
2022-08-03 22:12:29 +00:00
option ( OPENMW_USE_SYSTEM_GOOGLETEST "Use system Google Test library." OFF )
2022-01-29 14:14:06 +00:00
2014-03-16 22:40:59 +00:00
option ( OPENMW_UNITY_BUILD "Use fewer compilation units to speed up compile time" FALSE )
2020-01-31 22:58:21 +00:00
option ( OPENMW_LTO_BUILD "Build OpenMW with Link-Time Optimization (Needs ~2GB of RAM)" OFF )
2014-03-16 22:40:59 +00:00
2016-07-07 15:27:08 +00:00
# what is necessary to build documentation
IF ( BUILD_DOCS )
# Builds the documentation.
FIND_PACKAGE ( Sphinx REQUIRED )
FIND_PACKAGE ( Doxygen REQUIRED )
ENDIF ( )
2010-08-13 15:11:03 +00:00
2012-07-27 21:53:50 +00:00
# OS X deployment
option ( OPENMW_OSX_DEPLOYMENT OFF )
2015-06-08 13:41:39 +00:00
if ( MSVC )
option ( OPENMW_MP_BUILD "Build OpenMW with /MP flag" OFF )
2022-01-17 08:05:19 +00:00
if ( OPENMW_MP_BUILD )
add_compile_options ( /MP )
endif ( )
# \bigobj is required:
# 1) for OPENMW_UNITY_BUILD;
# 2) to compile lua bindings in components, openmw and tests, because sol3 is heavily templated.
# there should be no relevant downsides to having it on:
# https://docs.microsoft.com/en-us/cpp/build/reference/bigobj-increase-number-of-sections-in-dot-obj-file
add_compile_options ( /bigobj )
2015-06-08 13:41:39 +00:00
endif ( )
2015-12-02 16:33:55 +00:00
# Set up common paths
if ( APPLE )
2016-10-28 13:39:27 +00:00
set ( OPENMW_RESOURCE_FILES "../Resources/resources" CACHE PATH "location of OpenMW resources files" )
2015-12-02 16:33:55 +00:00
elseif ( UNIX )
# Paths
SET ( BINDIR "${CMAKE_INSTALL_PREFIX}/bin" CACHE PATH "Where to install binaries" )
SET ( LIBDIR "${CMAKE_INSTALL_PREFIX}/lib${LIB_SUFFIX}" CACHE PATH "Where to install libraries" )
2022-01-29 12:57:04 +00:00
SET ( DATAROOTDIR "${CMAKE_INSTALL_DATAROOTDIR}" CACHE PATH "Sets the root of data directories to a non-default location" )
2022-01-30 21:39:28 +00:00
SET ( GLOBAL_DATA_PATH "${CMAKE_INSTALL_PREFIX}/share/games/" CACHE PATH "Set data path prefix" )
2015-12-02 16:33:55 +00:00
SET ( DATADIR "${GLOBAL_DATA_PATH}/openmw" CACHE PATH "Sets the openmw data directories to a non-default location" )
SET ( ICONDIR "${DATAROOTDIR}/pixmaps" CACHE PATH "Set icon dir" )
SET ( LICDIR "${DATAROOTDIR}/licenses/openmw" CACHE PATH "Sets the openmw license directory to a non-default location." )
IF ( "${CMAKE_INSTALL_PREFIX}" STREQUAL "/usr" )
SET ( GLOBAL_CONFIG_PATH "/etc/" CACHE PATH "Set config dir prefix" )
ELSE ( )
SET ( GLOBAL_CONFIG_PATH "${CMAKE_INSTALL_PREFIX}/etc/" CACHE PATH "Set config dir prefix" )
ENDIF ( )
SET ( SYSCONFDIR "${GLOBAL_CONFIG_PATH}/openmw" CACHE PATH "Set config dir" )
set ( OPENMW_RESOURCE_FILES "${DATADIR}/resources" CACHE PATH "location of OpenMW resources files" )
else ( )
set ( OPENMW_RESOURCE_FILES "resources" CACHE PATH "location of OpenMW resources files" )
endif ( APPLE )
2010-09-19 00:01:01 +00:00
if ( WIN32 )
option ( USE_DEBUG_CONSOLE "whether a debug console should be enabled for debug builds, if false debug output is redirected to Visual Studio output" ON )
endif ( )
2021-11-04 14:09:48 +00:00
if ( MSVC )
2023-03-10 14:01:18 +00:00
add_compile_options ( "/utf-8" )
2021-11-04 14:09:48 +00:00
endif ( )
2015-12-24 10:33:59 +00:00
# Dependencies
2018-03-27 18:20:40 +00:00
find_package ( OpenGL REQUIRED )
2020-10-15 21:47:19 +00:00
find_package ( LZ4 REQUIRED )
2015-12-24 10:33:59 +00:00
if ( USE_QT )
2023-02-06 21:17:15 +00:00
find_package ( QT REQUIRED COMPONENTS Core NAMES Qt6 Qt5 )
2023-03-10 13:42:43 +00:00
if ( QT_VERSION_MAJOR VERSION_EQUAL 5 )
2023-02-06 21:17:15 +00:00
find_package ( Qt5 5.15 COMPONENTS Core Widgets Network OpenGL REQUIRED )
2023-03-10 13:42:43 +00:00
else ( )
2023-04-03 08:15:31 +00:00
find_package ( Qt6 COMPONENTS Core Widgets Network OpenGL OpenGLWidgets REQUIRED )
2023-02-06 21:17:15 +00:00
endif ( )
message ( STATUS "Using Qt${QT_VERSION}" )
2015-12-24 10:33:59 +00:00
endif ( )
2021-01-20 19:59:34 +00:00
set ( USED_OSG_COMPONENTS
2021-06-21 14:13:33 +00:00
o s g A n i m a t i o n
2021-01-20 19:59:34 +00:00
o s g D B
o s g G A
2021-06-21 14:13:33 +00:00
o s g F X
2021-01-20 19:59:34 +00:00
o s g P a r t i c l e
2021-06-21 14:13:33 +00:00
o s g T e x t
2021-01-20 19:59:34 +00:00
o s g U t i l
o s g S h a d o w
2021-06-21 14:13:33 +00:00
o s g S i m
o s g V i e w e r
)
2021-01-20 19:59:34 +00:00
set ( USED_OSG_PLUGINS
o s g d b _ b m p
2021-06-21 14:13:33 +00:00
o s g d b _ d a e
2021-01-20 19:59:34 +00:00
o s g d b _ d d s
o s g d b _ f r e e t y p e
o s g d b _ j p e g
o s g d b _ o s g
o s g d b _ p n g
o s g d b _ s e r i a l i z e r s _ o s g
o s g d b _ t g a )
2022-11-20 13:22:03 +00:00
if ( NOT COLLADA_DOM_VERSION_MAJOR )
set ( COLLADA_DOM_VERSION_MAJOR 2 )
endif ( )
if ( NOT COLLADA_DOM_VERSION_MINOR )
set ( COLLADA_DOM_VERSION_MINOR 5 )
endif ( )
find_package ( collada_dom 2.5 )
2022-04-10 07:57:02 +00:00
option ( OPENMW_USE_SYSTEM_ICU "Use system ICU library instead of internal. If disabled, requires autotools" ON )
if ( OPENMW_USE_SYSTEM_ICU )
2022-05-29 19:32:53 +00:00
find_package ( ICU REQUIRED COMPONENTS uc i18n data )
2022-04-10 07:57:02 +00:00
endif ( )
option ( OPENMW_USE_SYSTEM_YAML_CPP "Use system yaml-cpp library instead of internal." ON )
if ( OPENMW_USE_SYSTEM_YAML_CPP )
set ( _yaml_cpp_static_default OFF )
else ( )
set ( _yaml_cpp_static_default ON )
endif ( )
option ( YAML_CPP_STATIC "Link static build of yaml-cpp into the binaries" ${ _yaml_cpp_static_default } )
if ( OPENMW_USE_SYSTEM_YAML_CPP )
2022-04-10 19:26:41 +00:00
find_package ( yaml-cpp REQUIRED )
2022-04-10 07:57:02 +00:00
endif ( )
2023-03-10 00:19:15 +00:00
if ( ( BUILD_UNITTESTS OR BUILD_OPENCS_TESTS ) AND OPENMW_USE_SYSTEM_GOOGLETEST )
find_package ( GTest 1.10 REQUIRED )
find_package ( GMock 1.10 REQUIRED )
endif ( )
2021-01-20 02:25:46 +00:00
add_subdirectory ( extern )
2010-08-13 15:11:03 +00:00
# Sound setup
2018-10-20 07:09:52 +00:00
# Require at least ffmpeg 3.2 for now
SET ( FFVER_OK FALSE )
2016-05-09 14:24:17 +00:00
find_package ( FFmpeg REQUIRED COMPONENTS AVCODEC AVFORMAT AVUTIL SWSCALE SWRESAMPLE )
2018-10-20 07:09:52 +00:00
if ( FFmpeg_FOUND )
SET ( FFVER_OK TRUE )
# Can not detect FFmpeg version on Windows for now
if ( NOT WIN32 )
if ( FFmpeg_AVFORMAT_VERSION VERSION_LESS "57.56.100" )
message ( STATUS "libavformat is too old! (${FFmpeg_AVFORMAT_VERSION}, wanted 57.56.100)" )
set ( FFVER_OK FALSE )
endif ( )
if ( FFmpeg_AVCODEC_VERSION VERSION_LESS "57.64.100" )
message ( STATUS "libavcodec is too old! (${FFmpeg_AVCODEC_VERSION}, wanted 57.64.100)" )
set ( FFVER_OK FALSE )
endif ( )
if ( FFmpeg_AVUTIL_VERSION VERSION_LESS "55.34.100" )
message ( STATUS "libavutil is too old! (${FFmpeg_AVUTIL_VERSION}, wanted 55.34.100)" )
set ( FFVER_OK FALSE )
endif ( )
if ( FFmpeg_SWSCALE_VERSION VERSION_LESS "4.2.100" )
message ( STATUS "libswscale is too old! (${FFmpeg_SWSCALE_VERSION}, wanted 4.2.100)" )
set ( FFVER_OK FALSE )
endif ( )
if ( FFmpeg_SWRESAMPLE_VERSION VERSION_LESS "2.3.100" )
message ( STATUS "libswresample is too old! (${FFmpeg_SWRESAMPLE_VERSION}, wanted 2.3.100)" )
set ( FFVER_OK FALSE )
endif ( )
endif ( )
2021-05-05 08:36:34 +00:00
if ( NOT FFVER_OK AND NOT APPLE ) # unable to detect on version on MacOS < 11.0
message ( FATAL_ERROR "FFmpeg version is too old, 3.2 is required" )
endif ( )
2018-10-20 07:09:52 +00:00
endif ( )
if ( NOT FFmpeg_FOUND )
message ( FATAL_ERROR "FFmpeg was not found" )
endif ( )
if ( WIN32 )
message ( "Can not detect FFmpeg version, at least the 3.2 is required" )
endif ( )
2015-06-28 03:53:03 +00:00
# Required for building the FFmpeg headers
add_definitions ( -D__STDC_CONSTANT_MACROS )
2010-08-13 20:30:22 +00:00
2019-07-28 18:04:37 +00:00
# Reqiuired for unity build
add_definitions ( -DMYGUI_DONT_REPLACE_NULLPTR )
2013-09-13 13:11:17 +00:00
# TinyXML
option ( USE_SYSTEM_TINYXML "Use system TinyXML library instead of internal." OFF )
2016-06-12 18:03:33 +00:00
if ( USE_SYSTEM_TINYXML )
find_package ( TinyXML REQUIRED )
2013-09-14 11:33:49 +00:00
add_definitions ( -DTIXML_USE_STL )
2016-06-12 18:03:33 +00:00
include_directories ( SYSTEM ${ TinyXML_INCLUDE_DIRS } )
2013-09-13 13:11:17 +00:00
endif ( )
2010-08-13 20:30:22 +00:00
2010-03-04 10:24:28 +00:00
# Platform specific
if ( WIN32 )
2013-08-06 16:55:17 +00:00
if ( NOT MINGW )
2012-03-25 21:12:00 +00:00
set ( Boost_USE_STATIC_LIBS ON )
2010-07-05 03:17:10 +00:00
add_definitions ( -DBOOST_ALL_NO_LIB )
2013-08-06 16:55:17 +00:00
endif ( NOT MINGW )
2014-01-04 05:41:23 +00:00
# Suppress WinMain(), provided by SDL
add_definitions ( -DSDL_MAIN_HANDLED )
2015-06-08 13:41:39 +00:00
# Get rid of useless crud from windows.h
2022-07-01 14:05:17 +00:00
add_definitions (
- D N O M I N M A X # name conflict with std::min, std::max
- D W I N 3 2 _ L E A N _ A N D _ M E A N
- D N O M B # name conflict with MWGui::MessageBox
- D N O G D I # name conflict with osgAnimation::MorphGeometry::RELATIVE
)
2010-08-30 01:12:54 +00:00
endif ( )
2010-03-04 10:24:28 +00:00
2021-01-20 02:25:46 +00:00
if ( OPENMW_USE_SYSTEM_BULLET )
set ( REQUIRED_BULLET_VERSION 286 ) # Bullet 286 required due to runtime bugfixes for btCapsuleShape
if ( DEFINED ENV{TRAVIS_BRANCH} OR DEFINED ENV{APPVEYOR} )
set ( REQUIRED_BULLET_VERSION 283 ) # but for build testing, 283 is fine
endif ( )
2021-05-02 16:13:16 +00:00
# First, try BulletConfig-float64.cmake which comes with Debian derivatives.
# This file does not define the Bullet version in a CMake-friendly way.
find_package ( Bullet CONFIGS BulletConfig-float64.cmake QUIET COMPONENTS BulletCollision LinearMath )
if ( BULLET_FOUND )
string ( REPLACE "." "" _bullet_version_num ${ BULLET_VERSION_STRING } )
if ( _bullet_version_num VERSION_LESS REQUIRED_BULLET_VERSION )
message ( FATAL_ERROR "System bullet version too old, OpenMW requires at least ${REQUIRED_BULLET_VERSION}, got ${_bullet_version_num}" )
endif ( )
# Fix the relative include:
set ( BULLET_INCLUDE_DIRS "${BULLET_ROOT_DIR}/${BULLET_INCLUDE_DIRS}" )
include ( FindPackageMessage )
find_package_message ( Bullet "Found Bullet: ${BULLET_LIBRARIES} ${BULLET_VERSION_STRING}" "${BULLET_VERSION_STRING}-float64" )
else ( )
find_package ( Bullet ${ REQUIRED_BULLET_VERSION } REQUIRED COMPONENTS BulletCollision LinearMath )
endif ( )
# Only link the Bullet libraries that we need:
string ( REGEX MATCHALL "((optimized|debug);)?[^;]*(BulletCollision|LinearMath)[^;]*" BULLET_LIBRARIES "${BULLET_LIBRARIES}" )
2021-05-02 15:48:50 +00:00
include ( cmake/CheckBulletPrecision.cmake )
if ( HAS_DOUBLE_PRECISION_BULLET )
message ( STATUS "Bullet uses double precision" )
else ( )
message ( FATAL_ERROR "Bullet does not uses double precision" )
endif ( )
2021-01-20 02:25:46 +00:00
endif ( )
2016-06-12 11:27:45 +00:00
if ( NOT WIN32 AND BUILD_WIZARD ) # windows users can just run the morrowind installer
find_package ( LIBUNSHIELD REQUIRED ) # required only for non win32 when building openmw-wizard
set ( OPENMW_USE_UNSHIELD TRUE )
endif ( )
2012-03-28 19:40:06 +00:00
# Fix for not visible pthreads functions for linker with glibc 2.15
2012-03-19 19:54:30 +00:00
if ( UNIX AND NOT APPLE )
2012-12-10 09:32:00 +00:00
find_package ( Threads )
2012-03-19 19:54:30 +00:00
endif ( )
2014-03-05 16:08:58 +00:00
# Look for stdint.h
include ( CheckIncludeFile )
check_include_file ( stdint.h HAVE_STDINT_H )
if ( NOT HAVE_STDINT_H )
unset ( HAVE_STDINT_H CACHE )
message ( FATAL_ERROR "stdint.h was not found" )
endif ( )
2021-01-20 02:25:46 +00:00
if ( OPENMW_USE_SYSTEM_OSG )
2022-08-09 21:07:28 +00:00
find_package ( OpenSceneGraph 3.6.5 REQUIRED ${ USED_OSG_COMPONENTS } ) # Bump to 3.6.6 when released
2021-06-16 08:28:48 +00:00
2021-01-20 02:25:46 +00:00
if ( OSG_STATIC )
find_package ( OSGPlugins REQUIRED COMPONENTS ${ USED_OSG_PLUGINS } )
endif ( )
endif ( )
2012-07-22 12:41:23 +00:00
2021-01-20 02:25:46 +00:00
include_directories ( BEFORE SYSTEM ${ OPENSCENEGRAPH_INCLUDE_DIRS } )
2016-08-15 23:23:04 +00:00
2015-07-17 05:56:15 +00:00
if ( OSG_STATIC )
2016-08-15 23:23:04 +00:00
add_definitions ( -DOSG_LIBRARY_STATIC )
2015-07-17 05:56:15 +00:00
endif ( )
2022-04-04 20:51:23 +00:00
include ( cmake/CheckOsgMultiview.cmake )
if ( HAVE_MULTIVIEW )
add_definitions ( -DOSG_HAS_MULTIVIEW )
endif ( HAVE_MULTIVIEW )
2019-01-16 19:47:59 +00:00
set ( BOOST_COMPONENTS system filesystem program_options iostreams )
2016-10-10 13:59:59 +00:00
if ( WIN32 )
2020-05-06 04:14:26 +00:00
set ( BOOST_COMPONENTS ${ BOOST_COMPONENTS } locale )
if ( MSVC )
2021-03-16 01:34:27 +00:00
# boost-zlib is not present (nor needed) in vcpkg version of boost.
# there, it is part of boost-iostreams instead.
set ( BOOST_OPTIONAL_COMPONENTS zlib )
2020-05-06 04:14:26 +00:00
endif ( MSVC )
2016-10-10 13:59:59 +00:00
endif ( WIN32 )
IF ( BOOST_STATIC )
set ( Boost_USE_STATIC_LIBS ON )
endif ( )
2019-11-28 11:48:22 +00:00
set ( Boost_NO_BOOST_CMAKE ON )
2021-03-16 01:34:27 +00:00
find_package ( Boost 1.6.2 REQUIRED COMPONENTS ${ BOOST_COMPONENTS } OPTIONAL_COMPONENTS ${ BOOST_OPTIONAL_COMPONENTS } )
2022-05-22 00:40:03 +00:00
if ( Boost_VERSION_STRING VERSION_GREATER_EQUAL 1.77.0 )
find_package ( Boost 1.77.0 REQUIRED COMPONENTS atomic )
endif ( )
2021-01-20 02:25:46 +00:00
if ( OPENMW_USE_SYSTEM_MYGUI )
2021-12-16 15:52:39 +00:00
find_package ( MyGUI 3.4.1 REQUIRED )
2021-01-20 02:25:46 +00:00
endif ( )
2020-03-14 18:24:36 +00:00
find_package ( SDL2 2.0.9 REQUIRED )
2010-08-12 14:13:54 +00:00
find_package ( OpenAL REQUIRED )
2014-06-02 07:34:43 +00:00
2020-11-25 04:55:20 +00:00
option ( USE_LUAJIT "Switch Lua/LuaJit (TRUE is highly recommended)" TRUE )
if ( USE_LUAJIT )
2022-11-12 02:43:57 +00:00
find_package ( LuaJit REQUIRED )
set ( LUA_INCLUDE_DIR ${ LuaJit_INCLUDE_DIR } )
set ( LUA_LIBRARIES ${ LuaJit_LIBRARIES } )
2020-11-25 04:55:20 +00:00
else ( USE_LUAJIT )
2022-11-12 02:43:57 +00:00
find_package ( Lua REQUIRED )
add_compile_definitions ( NO_LUAJIT )
2020-11-25 04:55:20 +00:00
endif ( USE_LUAJIT )
2022-11-12 02:43:57 +00:00
if ( NOT WIN32 )
include ( cmake/CheckLuaCustomAllocator.cmake )
endif ( )
2020-11-25 04:55:20 +00:00
2021-07-12 09:46:32 +00:00
# C++ library binding to Lua
2022-05-13 14:35:49 +00:00
set ( SOL_INCLUDE_DIR ${ OpenMW_SOURCE_DIR } /extern/sol3 )
2021-12-04 11:32:39 +00:00
set ( SOL_CONFIG_DIR ${ OpenMW_SOURCE_DIR } /extern/sol_config )
2020-11-25 04:55:20 +00:00
2021-01-20 02:25:46 +00:00
include_directories (
B E F O R E S Y S T E M
" . "
2013-01-08 10:19:05 +00:00
$ { S D L 2 _ I N C L U D E _ D I R }
$ { B o o s t _ I N C L U D E _ D I R }
2016-06-12 20:34:53 +00:00
$ { M y G U I _ I N C L U D E _ D I R S }
2010-08-30 01:12:54 +00:00
$ { O P E N A L _ I N C L U D E _ D I R }
2021-01-14 02:52:59 +00:00
$ { O P E N G L _ I N C L U D E _ D I R }
2020-07-10 13:01:44 +00:00
$ { B U L L E T _ I N C L U D E _ D I R S }
2020-11-25 04:55:20 +00:00
$ { L U A _ I N C L U D E _ D I R }
2021-12-04 11:32:39 +00:00
$ { S O L _ I N C L U D E _ D I R }
$ { S O L _ C O N F I G _ D I R }
2022-04-10 07:57:02 +00:00
$ { I C U _ I N C L U D E _ D I R S }
2010-07-08 09:53:59 +00:00
)
2022-11-14 01:13:16 +00:00
link_directories ( ${ SDL2_LIBRARY_DIRS } ${ Boost_LIBRARY_DIRS } ${ COLLADA_DOM_LIBRARY_DIRS } )
2010-02-28 13:51:17 +00:00
2014-06-02 07:34:43 +00:00
if ( MYGUI_STATIC )
2023-03-10 14:01:18 +00:00
add_definitions ( -DMYGUI_STATIC )
2014-06-02 07:34:43 +00:00
endif ( MYGUI_STATIC )
2012-04-16 13:27:57 +00:00
if ( APPLE )
2015-08-11 22:38:02 +00:00
configure_file ( ${ OpenMW_SOURCE_DIR } /files/mac/openmw-Info.plist.in
2012-07-24 20:13:33 +00:00
" $ { A P P _ B U N D L E _ D I R } / C o n t e n t s / I n f o . p l i s t " )
configure_file ( ${ OpenMW_SOURCE_DIR } /files/mac/openmw.icns
" $ { A P P _ B U N D L E _ D I R } / C o n t e n t s / R e s o u r c e s / O p e n M W . i c n s " C O P Y O N L Y )
2012-04-16 13:27:57 +00:00
endif ( APPLE )
2010-09-14 10:29:26 +00:00
2021-12-07 10:31:41 +00:00
if ( NOT APPLE ) # this is modified for macOS use later in "apps/open[mw|cs]/CMakeLists.txt"
2021-12-08 13:33:49 +00:00
set ( OPENMW_RESOURCES_ROOT ${ OpenMW_BINARY_DIR } )
2016-10-28 13:39:27 +00:00
endif ( )
2012-04-16 13:27:57 +00:00
add_subdirectory ( files/ )
2010-09-14 10:29:26 +00:00
2010-06-06 10:56:46 +00:00
# Specify build paths
2011-03-27 19:28:46 +00:00
if ( APPLE )
2013-03-12 20:21:08 +00:00
set ( CMAKE_RUNTIME_OUTPUT_DIRECTORY "${APP_BUNDLE_DIR}/Contents/MacOS" )
2014-09-11 21:12:38 +00:00
set ( CMAKE_LIBRARY_OUTPUT_DIRECTORY "${APP_BUNDLE_DIR}/Contents/MacOS" )
2015-08-08 15:19:26 +00:00
if ( OPENMW_OSX_DEPLOYMENT )
2015-11-13 00:19:56 +00:00
SET ( CMAKE_INSTALL_RPATH_USE_LINK_PATH TRUE )
2015-08-08 15:19:26 +00:00
endif ( )
2011-03-27 19:28:46 +00:00
else ( APPLE )
2013-03-12 20:21:08 +00:00
set ( CMAKE_RUNTIME_OUTPUT_DIRECTORY "${OpenMW_BINARY_DIR}" )
2014-09-11 21:12:38 +00:00
set ( CMAKE_LIBRARY_OUTPUT_DIRECTORY "${OpenMW_BINARY_DIR}" )
2011-03-27 19:28:46 +00:00
endif ( APPLE )
2010-06-06 10:56:46 +00:00
# Other files
2021-05-09 20:00:49 +00:00
pack_resource_file ( ${ OpenMW_SOURCE_DIR } /files/settings-default.cfg
" $ { O p e n M W _ B I N A R Y _ D I R } " " d e f a u l t s . b i n " )
2012-04-01 15:14:49 +00:00
2018-12-11 20:30:37 +00:00
configure_resource_file ( ${ OpenMW_SOURCE_DIR } /files/openmw.appdata.xml
2018-12-11 20:34:11 +00:00
" $ { O p e n M W _ B I N A R Y _ D I R } " " o p e n m w . a p p d a t a . x m l " )
2012-04-01 15:14:49 +00:00
2016-10-28 13:39:27 +00:00
if ( NOT APPLE )
2017-10-11 20:58:55 +00:00
configure_resource_file ( ${ OpenMW_SOURCE_DIR } /files/openmw.cfg.local
" $ { O p e n M W _ B I N A R Y _ D I R } " " o p e n m w . c f g " )
configure_resource_file ( ${ OpenMW_SOURCE_DIR } /files/openmw.cfg
" $ { O p e n M W _ B I N A R Y _ D I R } " " o p e n m w . c f g . i n s t a l l " )
2016-10-28 13:39:27 +00:00
else ( )
configure_file ( ${ OpenMW_SOURCE_DIR } /files/openmw.cfg
" $ { O p e n M W _ B I N A R Y _ D I R } / o p e n m w . c f g " )
endif ( )
2011-04-24 10:39:50 +00:00
2021-06-26 19:00:25 +00:00
pack_resource_file ( ${ OpenMW_SOURCE_DIR } /files/openmw-cs.cfg
" $ { O p e n M W _ B I N A R Y _ D I R } " " d e f a u l t s - c s . b i n " )
2011-04-08 17:24:21 +00:00
2017-10-18 23:50:57 +00:00
# Needs the copy version because the configure version assumes the end of the file has been reached when a null character is reached and there are no CMake expressions to evaluate.
copy_resource_file ( ${ OpenMW_SOURCE_DIR } /files/opencs/defaultfilters
" $ { O p e n M W _ B I N A R Y _ D I R } " " r e s o u r c e s / d e f a u l t f i l t e r s " )
2011-04-08 17:24:21 +00:00
2017-10-11 20:58:55 +00:00
configure_resource_file ( ${ OpenMW_SOURCE_DIR } /files/gamecontrollerdb.txt
" $ { O p e n M W _ B I N A R Y _ D I R } " " g a m e c o n t r o l l e r d b . t x t " )
2014-12-20 20:46:11 +00:00
2013-02-27 03:44:35 +00:00
if ( NOT WIN32 AND NOT APPLE )
2020-03-27 07:12:06 +00:00
configure_file ( ${ OpenMW_SOURCE_DIR } /files/org.openmw.launcher.desktop
" $ { O p e n M W _ B I N A R Y _ D I R } / o r g . o p e n m w . l a u n c h e r . d e s k t o p " )
2015-08-04 11:05:29 +00:00
configure_file ( ${ OpenMW_SOURCE_DIR } /files/openmw.appdata.xml
" $ { O p e n M W _ B I N A R Y _ D I R } / o p e n m w . a p p d a t a . x m l " )
2020-03-27 07:12:06 +00:00
configure_file ( ${ OpenMW_SOURCE_DIR } /files/org.openmw.cs.desktop
" $ { O p e n M W _ B I N A R Y _ D I R } / o r g . o p e n m w . c s . d e s k t o p " )
2011-03-28 22:34:35 +00:00
endif ( )
2011-04-08 17:24:21 +00:00
2020-01-31 22:58:21 +00:00
if ( OPENMW_LTO_BUILD )
if ( NOT CMAKE_VERSION VERSION_LESS 3.9 )
include ( CheckIPOSupported )
check_ipo_supported ( RESULT HAVE_IPO OUTPUT HAVE_IPO_OUTPUT )
if ( HAVE_IPO )
2020-09-03 19:15:53 +00:00
message ( STATUS "LTO enabled for Release configuration." )
set ( CMAKE_INTERPROCEDURAL_OPTIMIZATION_RELEASE TRUE )
2020-01-31 22:58:21 +00:00
else ( )
message ( WARNING "Requested option OPENMW_LTO_BUILD not supported by this compiler: ${HAVE_IPO_OUTPUT}" )
2020-09-03 19:38:02 +00:00
if ( MSVC )
message ( STATUS "Note: Flags used to be set manually for this setting with MSVC. We now rely on CMake for this. Upgrade CMake to at least 3.13 to re-enable this setting." )
endif ( )
2020-01-31 22:58:21 +00:00
endif ( )
else ( )
2020-09-03 19:38:02 +00:00
message ( WARNING "Requested option OPENMW_LTO_BUILD not supported by this cmake version: ${CMAKE_VERSION}. Upgrade CMake to at least 3.9 to enable support for certain compilers. Newer CMake versions support more compilers." )
2020-01-31 22:58:21 +00:00
endif ( )
endif ( )
2015-03-09 18:37:43 +00:00
if ( CMAKE_CXX_COMPILER_ID STREQUAL GNU OR CMAKE_CXX_COMPILER_ID STREQUAL Clang )
2023-02-03 21:54:26 +00:00
set ( OPENMW_CXX_FLAGS "-Wall -Wextra -Wundef -Wextra-semi -Wno-unused-parameter -pedantic -Wno-long-long -Wnon-virtual-dtor -Wunused ${OPENMW_CXX_FLAGS}" )
2016-08-13 14:39:08 +00:00
add_definitions ( -DBOOST_NO_CXX11_SCOPED_ENUMS=ON )
if ( APPLE )
set ( CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -stdlib=libc++" )
2016-09-17 16:52:58 +00:00
set ( CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -stdlib=libc++" )
2016-08-13 14:39:08 +00:00
endif ( )
2012-03-26 19:21:51 +00:00
2015-04-02 01:44:41 +00:00
if ( CMAKE_CXX_COMPILER_ID STREQUAL Clang AND NOT APPLE )
2016-05-08 21:04:18 +00:00
if ( CMAKE_CXX_COMPILER_VERSION VERSION_GREATER 3.6 OR CMAKE_CXX_COMPILER_VERSION VERSION_EQUAL 3.6 )
2023-02-03 20:11:46 +00:00
set ( OPENMW_CXX_FLAGS "${OPENMW_CXX_FLAGS} -Wno-potentially-evaluated-expression" )
2016-05-08 21:04:18 +00:00
endif ( )
endif ( )
2015-04-02 01:44:41 +00:00
2023-02-03 21:53:43 +00:00
if ( CMAKE_CXX_COMPILER_ID STREQUAL GNU )
2023-02-03 21:54:26 +00:00
set ( OPENMW_CXX_FLAGS "${OPENMW_CXX_FLAGS} -Wno-unused-but-set-parameter -Wduplicated-branches -Wduplicated-cond -Wlogical-op" )
2016-05-08 21:04:18 +00:00
endif ( )
2015-03-09 18:37:43 +00:00
endif ( CMAKE_CXX_COMPILER_ID STREQUAL GNU OR CMAKE_CXX_COMPILER_ID STREQUAL Clang )
2010-06-25 12:41:49 +00:00
2012-07-03 20:27:22 +00:00
# Extern
2018-10-31 21:20:10 +00:00
2015-04-19 18:14:06 +00:00
add_subdirectory ( extern/osg-ffmpeg-videoplayer )
2015-04-01 15:02:15 +00:00
add_subdirectory ( extern/oics )
2021-05-17 22:00:23 +00:00
add_subdirectory ( extern/Base64 )
2023-04-03 08:15:31 +00:00
if ( BUILD_OPENCS OR BUILD_OPENCS_TESTS )
2016-02-25 19:39:18 +00:00
add_subdirectory ( extern/osgQt )
endif ( )
2012-07-03 20:27:22 +00:00
2021-10-06 15:28:48 +00:00
if ( OPENMW_CXX_FLAGS )
set ( CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${OPENMW_CXX_FLAGS}" )
2021-10-03 19:58:10 +00:00
endif ( )
2011-11-06 08:30:15 +00:00
# Components
add_subdirectory ( components )
2010-07-08 20:53:14 +00:00
# Apps and tools
2015-02-17 15:05:28 +00:00
if ( BUILD_OPENMW )
add_subdirectory ( apps/openmw )
endif ( )
2010-07-08 20:53:14 +00:00
2013-03-04 23:45:25 +00:00
if ( BUILD_BSATOOL )
2023-03-10 14:01:18 +00:00
add_subdirectory ( apps/bsatool )
2013-03-04 23:45:25 +00:00
endif ( )
2010-07-21 11:52:28 +00:00
if ( BUILD_ESMTOOL )
2023-03-10 14:01:18 +00:00
add_subdirectory ( apps/esmtool )
2010-07-21 11:52:28 +00:00
endif ( )
2010-09-19 00:01:01 +00:00
2011-09-29 12:59:20 +00:00
if ( BUILD_LAUNCHER )
2023-03-10 14:01:18 +00:00
add_subdirectory ( apps/launcher )
2011-09-29 12:59:20 +00:00
endif ( )
2011-03-28 23:31:42 +00:00
2012-03-30 18:59:44 +00:00
if ( BUILD_MWINIIMPORTER )
2023-03-10 14:01:18 +00:00
add_subdirectory ( apps/mwiniimporter )
2012-03-30 18:59:44 +00:00
endif ( )
2015-01-16 23:11:36 +00:00
if ( BUILD_ESSIMPORTER )
2023-03-10 14:01:18 +00:00
add_subdirectory ( apps/essimporter )
2015-01-16 23:11:36 +00:00
endif ( )
2023-03-10 00:19:15 +00:00
if ( BUILD_OPENCS OR BUILD_OPENCS_TESTS )
2023-03-10 14:01:18 +00:00
add_subdirectory ( apps/opencs )
2012-11-21 16:31:18 +00:00
endif ( )
2013-12-07 15:17:07 +00:00
if ( BUILD_WIZARD )
2023-03-10 14:01:18 +00:00
add_subdirectory ( apps/wizard )
2013-12-07 15:17:07 +00:00
endif ( )
2015-07-22 02:08:37 +00:00
if ( BUILD_NIFTEST )
add_subdirectory ( apps/niftest )
endif ( BUILD_NIFTEST )
2012-08-19 19:23:46 +00:00
# UnitTests
if ( BUILD_UNITTESTS )
2023-03-10 14:01:18 +00:00
add_subdirectory ( apps/openmw_test_suite )
2012-08-19 19:23:46 +00:00
endif ( )
2021-03-24 23:59:44 +00:00
if ( BUILD_BENCHMARKS )
2023-03-10 14:01:18 +00:00
add_subdirectory ( apps/benchmarks )
2021-03-24 23:59:44 +00:00
endif ( )
2021-06-29 01:49:21 +00:00
if ( BUILD_NAVMESHTOOL )
2023-03-10 14:01:18 +00:00
add_subdirectory ( apps/navmeshtool )
2021-06-29 01:49:21 +00:00
endif ( )
2021-11-21 14:28:40 +00:00
if ( BUILD_BULLETOBJECTTOOL )
2023-03-10 14:01:18 +00:00
add_subdirectory ( apps/bulletobjecttool )
2021-11-21 14:28:40 +00:00
endif ( )
2023-03-10 00:19:15 +00:00
if ( BUILD_OPENCS_TESTS )
add_subdirectory ( apps/opencs_tests )
endif ( )
2010-09-19 00:01:01 +00:00
if ( WIN32 )
2023-03-10 14:01:18 +00:00
if ( MSVC )
foreach ( OUTPUTCONFIG ${ CMAKE_CONFIGURATION_TYPES } )
string ( TOUPPER ${ OUTPUTCONFIG } OUTPUTCONFIG )
set ( CMAKE_RUNTIME_OUTPUT_DIRECTORY_ ${ OUTPUTCONFIG } "$(SolutionDir)$(Configuration)" )
set ( CMAKE_LIBRARY_OUTPUT_DIRECTORY_ ${ OUTPUTCONFIG } "$(ProjectDir)$(Configuration)" )
endforeach ( OUTPUTCONFIG )
if ( USE_DEBUG_CONSOLE AND BUILD_OPENMW )
set_target_properties ( openmw PROPERTIES LINK_FLAGS_DEBUG "/SUBSYSTEM:CONSOLE" )
set_target_properties ( openmw PROPERTIES LINK_FLAGS_RELWITHDEBINFO "/SUBSYSTEM:CONSOLE" )
set_target_properties ( openmw PROPERTIES COMPILE_DEFINITIONS $< $<CONFIG:Debug > :_CONSOLE> )
elseif ( BUILD_OPENMW )
# Turn off debug console, debug output will be written to visual studio output instead
set_target_properties ( openmw PROPERTIES LINK_FLAGS_DEBUG "/SUBSYSTEM:WINDOWS" )
set_target_properties ( openmw PROPERTIES LINK_FLAGS_RELWITHDEBINFO "/SUBSYSTEM:WINDOWS" )
endif ( )
2011-01-30 12:19:41 +00:00
2023-03-10 14:01:18 +00:00
if ( BUILD_OPENMW )
# Release builds don't use the debug console
set_target_properties ( openmw PROPERTIES LINK_FLAGS_RELEASE "/SUBSYSTEM:WINDOWS" )
set_target_properties ( openmw PROPERTIES LINK_FLAGS_MINSIZEREL "/SUBSYSTEM:WINDOWS" )
endif ( )
2012-03-13 20:55:50 +00:00
2023-03-10 14:01:18 +00:00
# Play a bit with the warning levels
2016-08-28 21:23:44 +00:00
2023-03-10 14:01:18 +00:00
set ( WARNINGS "/W4" )
2021-04-19 11:34:22 +00:00
2023-03-10 14:01:18 +00:00
set ( WARNINGS_DISABLE
4 1 0 0 # Unreferenced formal parameter (-Wunused-parameter)
4 1 2 7 # Conditional expression is constant
4 9 9 6 # Function was declared deprecated
5 0 5 4 # Deprecated operations between enumerations of different types caused by Qt headers
)
2012-03-13 21:47:39 +00:00
2023-03-10 14:01:18 +00:00
if ( "${MyGUI_VERSION}" VERSION_LESS_EQUAL "3.4.0" )
set ( WARNINGS_DISABLE ${ WARNINGS_DISABLE }
4 8 6 6 # compiler may not enforce left-to-right evaluation order for call
)
endif ( )
2022-07-11 20:17:12 +00:00
2023-03-10 14:01:18 +00:00
if ( "${MyGUI_VERSION}" VERSION_LESS_EQUAL "3.4.1" )
set ( WARNINGS_DISABLE ${ WARNINGS_DISABLE }
4 2 7 5 # non dll-interface class 'MyGUI::delegates::IDelegateUnlink' used as base for dll-interface class 'MyGUI::Widget'
)
endif ( )
2015-06-08 13:41:39 +00:00
2023-03-10 14:01:18 +00:00
foreach ( d ${ WARNINGS_DISABLE } )
set ( WARNINGS "${WARNINGS} /wd${d}" )
endforeach ( d )
2015-06-08 13:41:39 +00:00
2023-03-10 14:01:18 +00:00
if ( OPENMW_MSVC_WERROR )
set ( WARNINGS "${WARNINGS} /WX" )
endif ( )
2015-06-08 13:41:39 +00:00
2023-03-10 14:01:18 +00:00
set_target_properties ( components PROPERTIES COMPILE_FLAGS "${WARNINGS}" )
set_target_properties ( osg-ffmpeg-videoplayer PROPERTIES COMPILE_FLAGS "${WARNINGS}" )
2015-06-08 13:41:39 +00:00
2023-03-10 14:01:18 +00:00
if ( MSVC_VERSION GREATER_EQUAL 1915 AND MSVC_VERSION LESS 1920 )
target_compile_definitions ( components INTERFACE _ENABLE_EXTENDED_ALIGNED_STORAGE )
endif ( )
2015-06-08 13:41:39 +00:00
2023-03-10 14:01:18 +00:00
if ( BUILD_BSATOOL )
set_target_properties ( bsatool PROPERTIES COMPILE_FLAGS "${WARNINGS}" )
endif ( )
2015-03-02 14:45:29 +00:00
2023-03-10 14:01:18 +00:00
if ( BUILD_ESMTOOL )
set_target_properties ( esmtool PROPERTIES COMPILE_FLAGS "${WARNINGS}" )
endif ( )
2015-06-08 13:41:39 +00:00
2023-03-10 14:01:18 +00:00
if ( BUILD_ESSIMPORTER )
set_target_properties ( openmw-essimporter PROPERTIES COMPILE_FLAGS "${WARNINGS}" )
endif ( )
2015-06-08 13:41:39 +00:00
2023-03-10 14:01:18 +00:00
if ( BUILD_LAUNCHER )
set_target_properties ( openmw-launcher PROPERTIES COMPILE_FLAGS "${WARNINGS}" )
endif ( )
2022-01-17 08:05:19 +00:00
2023-03-10 14:01:18 +00:00
if ( BUILD_MWINIIMPORTER )
set_target_properties ( openmw-iniimporter PROPERTIES COMPILE_FLAGS "${WARNINGS}" )
endif ( )
2021-05-09 22:17:11 +00:00
2023-03-10 14:01:18 +00:00
if ( BUILD_OPENCS )
set_target_properties ( openmw-cs PROPERTIES COMPILE_FLAGS "${WARNINGS}" )
endif ( )
2021-06-29 01:49:21 +00:00
2023-03-10 14:01:18 +00:00
if ( BUILD_OPENMW )
set_target_properties ( openmw PROPERTIES COMPILE_FLAGS "${WARNINGS}" )
endif ( )
2021-11-21 14:28:40 +00:00
2023-03-10 14:01:18 +00:00
if ( BUILD_WIZARD )
set_target_properties ( openmw-wizard PROPERTIES COMPILE_FLAGS "${WARNINGS}" )
endif ( )
if ( BUILD_UNITTESTS )
set_target_properties ( openmw_test_suite PROPERTIES COMPILE_FLAGS "${WARNINGS}" )
endif ( )
if ( BUILD_BENCHMARKS )
set_target_properties ( openmw_detournavigator_navmeshtilescache_benchmark PROPERTIES COMPILE_FLAGS "${WARNINGS}" )
endif ( )
if ( BUILD_NAVMESHTOOL )
set_target_properties ( openmw-navmeshtool PROPERTIES COMPILE_FLAGS "${WARNINGS}" )
endif ( )
if ( BUILD_BULLETOBJECTTOOL )
set ( WARNINGS "${WARNINGS} ${MT_BUILD}" )
set_target_properties ( openmw-bulletobjecttool PROPERTIES COMPILE_FLAGS "${WARNINGS}" )
endif ( )
endif ( MSVC )
2011-01-08 20:58:47 +00:00
2023-03-10 14:01:18 +00:00
# TODO: At some point release builds should not use the console but rather write to a log file
#set_target_properties(openmw PROPERTIES LINK_FLAGS_RELEASE "/SUBSYSTEM:WINDOWS")
#set_target_properties(openmw PROPERTIES LINK_FLAGS_MINSIZEREL "/SUBSYSTEM:WINDOWS")
2010-09-19 00:01:01 +00:00
endif ( )
2012-01-29 19:28:05 +00:00
2020-11-25 04:55:20 +00:00
if ( BUILD_OPENMW AND APPLE )
2021-10-27 21:54:04 +00:00
target_compile_definitions ( components PRIVATE GL_SILENCE_DEPRECATION=1 )
target_compile_definitions ( openmw PRIVATE GL_SILENCE_DEPRECATION=1 )
2020-11-25 04:55:20 +00:00
endif ( )
2012-01-29 19:28:05 +00:00
# Apple bundling
2020-06-22 10:17:06 +00:00
if ( OPENMW_OSX_DEPLOYMENT AND APPLE )
2022-09-21 14:49:24 +00:00
if ( CMAKE_VERSION VERSION_LESS 3.19 )
message ( FATAL_ERROR "macOS packaging requires CMake 3.19 or higher to sign macOS app bundles." )
2018-12-26 15:57:10 +00:00
endif ( )
2023-02-06 21:17:15 +00:00
get_property ( QT_COCOA_PLUGIN_PATH TARGET Qt ${ QT_VERSION_MAJOR } ::QCocoaIntegrationPlugin PROPERTY LOCATION_RELEASE )
2015-11-12 21:33:22 +00:00
get_filename_component ( QT_COCOA_PLUGIN_DIR "${QT_COCOA_PLUGIN_PATH}" DIRECTORY )
get_filename_component ( QT_COCOA_PLUGIN_GROUP "${QT_COCOA_PLUGIN_DIR}" NAME )
get_filename_component ( QT_COCOA_PLUGIN_NAME "${QT_COCOA_PLUGIN_PATH}" NAME )
2017-07-30 13:42:16 +00:00
configure_file ( "${QT_COCOA_PLUGIN_PATH}" "${APP_BUNDLE_DIR}/Contents/PlugIns/${QT_COCOA_PLUGIN_GROUP}/${QT_COCOA_PLUGIN_NAME}" COPYONLY )
2023-01-06 19:01:50 +00:00
2023-02-06 21:17:15 +00:00
get_property ( QT_QMACSTYLE_PLUGIN_PATH TARGET Qt ${ QT_VERSION_MAJOR } ::QMacStylePlugin PROPERTY LOCATION_RELEASE )
2023-01-06 19:01:50 +00:00
get_filename_component ( QT_QMACSTYLE_PLUGIN_DIR "${QT_QMACSTYLE_PLUGIN_PATH}" DIRECTORY )
get_filename_component ( QT_QMACSTYLE_PLUGIN_GROUP "${QT_QMACSTYLE_PLUGIN_DIR}" NAME )
get_filename_component ( QT_QMACSTYLE_PLUGIN_NAME "${QT_QMACSTYLE_PLUGIN_PATH}" NAME )
configure_file ( "${QT_QMACSTYLE_PLUGIN_PATH}" "${APP_BUNDLE_DIR}/Contents/PlugIns/${QT_QMACSTYLE_PLUGIN_GROUP}/${QT_QMACSTYLE_PLUGIN_NAME}" COPYONLY )
2017-07-30 13:42:16 +00:00
configure_file ( "${OpenMW_SOURCE_DIR}/files/mac/qt.conf" "${APP_BUNDLE_DIR}/Contents/Resources/qt.conf" COPYONLY )
2015-11-12 21:33:22 +00:00
if ( BUILD_OPENCS )
2023-03-10 14:01:18 +00:00
get_property ( OPENCS_BUNDLE_NAME_TMP TARGET openmw-cs PROPERTY OUTPUT_NAME )
set ( OPENCS_BUNDLE_NAME "${OPENCS_BUNDLE_NAME_TMP}.app" )
configure_file ( "${QT_COCOA_PLUGIN_PATH}" "${OPENCS_BUNDLE_NAME}/Contents/PlugIns/${QT_COCOA_PLUGIN_GROUP}/${QT_COCOA_PLUGIN_NAME}" COPYONLY )
configure_file ( "${QT_QMACSTYLE_PLUGIN_PATH}" "${OPENCS_BUNDLE_NAME}/Contents/PlugIns/${QT_QMACSTYLE_PLUGIN_GROUP}/${QT_QMACSTYLE_PLUGIN_NAME}" COPYONLY )
configure_file ( "${OpenMW_SOURCE_DIR}/files/mac/qt.conf" "${OPENCS_BUNDLE_NAME}/Contents/Resources/qt.conf" COPYONLY )
2015-11-12 21:33:22 +00:00
endif ( )
2016-10-28 13:39:27 +00:00
install ( DIRECTORY "${APP_BUNDLE_DIR}" USE_SOURCE_PERMISSIONS DESTINATION "." COMPONENT Runtime )
2012-02-28 16:19:44 +00:00
2012-02-01 16:48:13 +00:00
set ( CPACK_GENERATOR "DragNDrop" )
set ( CPACK_PACKAGE_VERSION ${ OPENMW_VERSION } )
set ( CPACK_PACKAGE_VERSION_MAJOR ${ OPENMW_VERSION_MAJOR } )
2013-09-15 19:03:07 +00:00
set ( CPACK_PACKAGE_VERSION_MINOR ${ OPENMW_VERSION_MINOR } )
2012-02-01 16:48:13 +00:00
set ( CPACK_PACKAGE_VERSION_PATCH ${ OPENMW_VERSION_RELEASE } )
2016-10-28 13:39:27 +00:00
set ( INSTALLED_OPENMW_APP "\${CMAKE_INSTALL_PREFIX}/${APP_BUNDLE_NAME}" )
set ( INSTALLED_OPENCS_APP "\${CMAKE_INSTALL_PREFIX}/${OPENCS_BUNDLE_NAME}" )
2013-11-10 18:04:13 +00:00
2014-02-16 15:01:28 +00:00
install ( CODE "
set ( BU_CHMOD_BUNDLE_ITEMS ON )
2015-08-03 17:21:35 +00:00
set ( CMAKE_MODULE_PATH ${ CMAKE_MODULE_PATH } )
2015-11-12 23:53:54 +00:00
include ( BundleUtilities )
cmake_minimum_required ( VERSION 3.1 )
2014-02-16 15:01:28 +00:00
" C O M P O N E N T R u n t i m e )
2015-08-08 15:19:26 +00:00
set ( ABSOLUTE_PLUGINS "" )
2018-12-13 02:08:35 +00:00
set ( OSGPlugins_DONT_FIND_DEPENDENCIES 1 )
find_package ( OSGPlugins REQUIRED COMPONENTS ${ USED_OSG_PLUGINS } )
2015-08-08 15:19:26 +00:00
foreach ( PLUGIN_NAME ${ USED_OSG_PLUGINS } )
2018-12-13 02:08:35 +00:00
string ( TOUPPER ${ PLUGIN_NAME } PLUGIN_NAME_UC )
if ( ${ PLUGIN_NAME_UC } _LIBRARY_RELEASE )
set ( PLUGIN_ABS ${ ${PLUGIN_NAME_UC } _LIBRARY_RELEASE} )
elseif ( ${ PLUGIN_NAME_UC } _LIBRARY )
set ( PLUGIN_ABS ${ ${PLUGIN_NAME_UC } _LIBRARY} )
else ( )
message ( FATAL_ERROR "Can't find library file for ${PLUGIN_NAME}" )
# We used to construct the path manually from OSGPlugins_LIB_DIR and the plugin name.
# Maybe that could be restored as a fallback?
endif ( )
set ( ABSOLUTE_PLUGINS ${ PLUGIN_ABS } ${ ABSOLUTE_PLUGINS } )
2015-08-08 15:19:26 +00:00
endforeach ( )
2018-12-13 02:08:35 +00:00
set ( OSG_PLUGIN_PREFIX_DIR "osgPlugins-${OPENSCENEGRAPH_VERSION}" )
2015-08-08 15:19:26 +00:00
# installs used plugins in bundle at given path (bundle_path must be relative to ${CMAKE_INSTALL_PREFIX})
# and returns list of install paths for all installed plugins
function ( install_plugins_for_bundle bundle_path plugins_var )
2015-11-12 22:37:03 +00:00
set ( RELATIVE_PLUGIN_INSTALL_BASE "${bundle_path}/Contents/PlugIns/${OSG_PLUGIN_PREFIX_DIR}" )
2015-08-08 15:19:26 +00:00
set ( PLUGINS "" )
set ( PLUGIN_INSTALL_BASE "\${CMAKE_INSTALL_PREFIX}/${RELATIVE_PLUGIN_INSTALL_BASE}" )
foreach ( PLUGIN ${ ABSOLUTE_PLUGINS } )
get_filename_component ( PLUGIN_RELATIVE ${ PLUGIN } NAME )
get_filename_component ( PLUGIN_RELATIVE_WE ${ PLUGIN } NAME_WE )
2012-02-01 16:48:13 +00:00
2015-08-08 15:19:26 +00:00
set ( PLUGIN_DYLIB_IN_BUNDLE "${PLUGIN_INSTALL_BASE}/${PLUGIN_RELATIVE}" )
set ( PLUGINS ${ PLUGINS } "${PLUGIN_DYLIB_IN_BUNDLE}" )
install ( CODE "
copy_resolved_item_into_bundle ( \"${PLUGIN}\" \"${PLUGIN_DYLIB_IN_BUNDLE}\")
" C O M P O N E N T R u n t i m e )
endforeach ( )
set ( ${ plugins_var } ${ PLUGINS } PARENT_SCOPE )
endfunction ( install_plugins_for_bundle )
2016-10-28 13:39:27 +00:00
install_plugins_for_bundle ( "${APP_BUNDLE_NAME}" PLUGINS )
install_plugins_for_bundle ( "${OPENCS_BUNDLE_NAME}" OPENCS_PLUGINS )
2015-08-08 15:19:26 +00:00
2017-07-30 13:42:16 +00:00
set ( PLUGINS ${ PLUGINS } "${INSTALLED_OPENMW_APP}/Contents/PlugIns/${QT_COCOA_PLUGIN_GROUP}/${QT_COCOA_PLUGIN_NAME}" )
2023-01-06 19:01:50 +00:00
set ( PLUGINS ${ PLUGINS } "${INSTALLED_OPENMW_APP}/Contents/PlugIns/${QT_QMACSTYLE_PLUGIN_GROUP}/${QT_QMACSTYLE_PLUGIN_NAME}" )
2017-07-30 13:42:16 +00:00
set ( OPENCS_PLUGINS ${ OPENCS_PLUGINS } "${INSTALLED_OPENCS_APP}/Contents/PlugIns/${QT_COCOA_PLUGIN_GROUP}/${QT_COCOA_PLUGIN_NAME}" )
2023-01-06 19:01:50 +00:00
set ( OPENCS_PLUGINS ${ OPENCS_PLUGINS } "${INSTALLED_OPENCS_APP}/Contents/PlugIns/${QT_QMACSTYLE_PLUGIN_GROUP}/${QT_QMACSTYLE_PLUGIN_NAME}" )
2012-02-01 16:48:13 +00:00
2015-08-03 17:21:35 +00:00
install ( CODE "
2015-08-08 15:19:26 +00:00
function ( gp_item_default_embedded_path_override item default_embedded_path_var )
2015-11-12 22:37:03 +00:00
if ( \${item} MATCHES ${ OSG_PLUGIN_PREFIX_DIR } )
set ( path \"@executable_path/../PlugIns/${OSG_PLUGIN_PREFIX_DIR}\")
2015-08-08 15:19:26 +00:00
set ( \${default_embedded_path_var} \"\${path}\" PARENT_SCOPE )
endif ( )
endfunction ( )
2015-11-13 00:19:56 +00:00
fixup_bundle ( \"${INSTALLED_OPENMW_APP}\" \"${PLUGINS}\" \"\")
fixup_bundle ( \"${INSTALLED_OPENCS_APP}\" \"${OPENCS_PLUGINS}\" \"\")
2015-08-03 17:21:35 +00:00
" C O M P O N E N T R u n t i m e )
2022-09-17 08:24:06 +00:00
set ( CPACK_PRE_BUILD_SCRIPTS ${ CMAKE_SOURCE_DIR } /cmake/SignMacApplications.cmake )
2015-08-03 17:21:35 +00:00
include ( CPack )
2020-08-30 09:29:44 +00:00
elseif ( NOT APPLE )
get_generator_is_multi_config ( multi_config )
if ( multi_config )
SET ( INSTALL_SOURCE "${OpenMW_BINARY_DIR}/$<CONFIG>" )
else ( )
SET ( INSTALL_SOURCE "${OpenMW_BINARY_DIR}" )
endif ( )
if ( WIN32 )
INSTALL ( DIRECTORY "${INSTALL_SOURCE}/" DESTINATION "." FILES_MATCHING PATTERN "*.dll"
P A T T E R N " d e p s " E X C L U D E
P A T T E R N " a p p s " E X C L U D E
P A T T E R N " C M a k e F i l e s " E X C L U D E
P A T T E R N " c o m p o n e n t s " E X C L U D E
P A T T E R N " d o c s " E X C L U D E
P A T T E R N " e x t e r n " E X C L U D E
P A T T E R N " f i l e s " E X C L U D E
P A T T E R N " T e s t i n g " E X C L U D E )
INSTALL ( DIRECTORY "${INSTALL_SOURCE}/" DESTINATION "." CONFIGURATIONS Debug;RelWithDebInfo FILES_MATCHING PATTERN "*.pdb"
P A T T E R N " d e p s " E X C L U D E
P A T T E R N " a p p s " E X C L U D E
P A T T E R N " C M a k e F i l e s " E X C L U D E
P A T T E R N " c o m p o n e n t s " E X C L U D E
P A T T E R N " d o c s " E X C L U D E
P A T T E R N " e x t e r n " E X C L U D E
P A T T E R N " f i l e s " E X C L U D E
P A T T E R N " T e s t i n g " E X C L U D E )
INSTALL ( FILES "${INSTALL_SOURCE}/openmw.cfg.install" DESTINATION "." RENAME "openmw.cfg" )
INSTALL ( FILES "${OpenMW_SOURCE_DIR}/CHANGELOG.md" DESTINATION "." RENAME "CHANGELOG.txt" )
INSTALL ( FILES "${OpenMW_SOURCE_DIR}/README.md" DESTINATION "." RENAME "README.txt" )
INSTALL ( FILES "${OpenMW_SOURCE_DIR}/LICENSE" DESTINATION "." RENAME "LICENSE.txt" )
2021-05-09 20:00:49 +00:00
INSTALL ( FILES "${INSTALL_SOURCE}/defaults.bin" DESTINATION "." )
2020-08-30 09:29:44 +00:00
INSTALL ( FILES "${INSTALL_SOURCE}/gamecontrollerdb.txt" DESTINATION "." )
INSTALL ( DIRECTORY "${INSTALL_SOURCE}/resources" DESTINATION "." )
SET ( CPACK_GENERATOR "NSIS" )
SET ( CPACK_PACKAGE_NAME "OpenMW" )
SET ( CPACK_PACKAGE_VENDOR "OpenMW.org" )
SET ( CPACK_PACKAGE_VERSION ${ OPENMW_VERSION } )
SET ( CPACK_PACKAGE_VERSION_MAJOR ${ OPENMW_VERSION_MAJOR } )
SET ( CPACK_PACKAGE_VERSION_MINOR ${ OPENMW_VERSION_MINOR } )
SET ( CPACK_PACKAGE_VERSION_PATCH ${ OPENMW_VERSION_RELEASE } )
SET ( CPACK_PACKAGE_EXECUTABLES "openmw;OpenMW" )
IF ( BUILD_LAUNCHER )
SET ( CPACK_PACKAGE_EXECUTABLES "${CPACK_PACKAGE_EXECUTABLES};openmw-launcher;OpenMW Launcher" )
ENDIF ( BUILD_LAUNCHER )
IF ( BUILD_OPENCS )
SET ( CPACK_PACKAGE_EXECUTABLES "${CPACK_PACKAGE_EXECUTABLES};openmw-cs;OpenMW Construction Set" )
ENDIF ( BUILD_OPENCS )
IF ( BUILD_WIZARD )
SET ( CPACK_PACKAGE_EXECUTABLES "${CPACK_PACKAGE_EXECUTABLES};openmw-wizard;OpenMW Wizard" )
ENDIF ( BUILD_WIZARD )
SET ( CPACK_NSIS_CREATE_ICONS_EXTRA "CreateShortCut '\$SMPROGRAMS\\\\$STARTMENU_FOLDER\\\\Readme.lnk' '\$INSTDIR\\\\README.txt'" )
SET ( CPACK_NSIS_DELETE_ICONS_EXTRA "
! i n s e r t m a c r o M U I _ S T A R T M E N U _ G E T F O L D E R A p p l i c a t i o n $ M U I _ T E M P
D e l e t e \ \ \ " $ S M P R O G R A M S \ \ \ \ $ M U I _ T E M P \ \ \ \ R e a d m e . l n k \ \ \ "
" )
SET ( CPACK_RESOURCE_FILE_README "${OpenMW_SOURCE_DIR}/README.md" )
SET ( CPACK_PACKAGE_DESCRIPTION_FILE "${OpenMW_SOURCE_DIR}/README.md" )
SET ( CPACK_NSIS_EXECUTABLES_DIRECTORY "." )
SET ( CPACK_NSIS_DISPLAY_NAME "OpenMW ${OPENMW_VERSION}" )
SET ( CPACK_NSIS_HELP_LINK "https:\\\\\\\\www.openmw.org" )
SET ( CPACK_NSIS_URL_INFO_ABOUT "https:\\\\\\\\www.openmw.org" )
SET ( CPACK_NSIS_INSTALLED_ICON_NAME "openmw-launcher.exe" )
SET ( CPACK_NSIS_MUI_FINISHPAGE_RUN "openmw-launcher.exe" )
SET ( CPACK_NSIS_MUI_ICON "${OpenMW_SOURCE_DIR}/files/windows/openmw.ico" )
SET ( CPACK_NSIS_MUI_UNIICON "${OpenMW_SOURCE_DIR}/files/windows/openmw.ico" )
SET ( CPACK_PACKAGE_ICON "${OpenMW_SOURCE_DIR}\\\\files\\\\openmw.bmp" )
SET ( VCREDIST32 "${OpenMW_BINARY_DIR}/vcredist_x86.exe" )
if ( EXISTS ${ VCREDIST32 } )
INSTALL ( FILES ${ VCREDIST32 } DESTINATION "redist" )
2021-05-01 22:20:51 +00:00
SET ( CPACK_NSIS_EXTRA_INSTALL_COMMANDS "ExecWait '\\\" $ INSTDIR\\\\redist\\\\vcredist_x86.exe\\\ " /q /norestart'" )
2020-08-30 09:29:44 +00:00
endif ( EXISTS ${ VCREDIST32 } )
SET ( VCREDIST64 "${OpenMW_BINARY_DIR}/vcredist_x64.exe" )
if ( EXISTS ${ VCREDIST64 } )
INSTALL ( FILES ${ VCREDIST64 } DESTINATION "redist" )
2021-05-01 22:20:51 +00:00
SET ( CPACK_NSIS_EXTRA_INSTALL_COMMANDS "ExecWait '\\\" $ INSTDIR\\\\redist\\\\vcredist_x64.exe\\\ " /q /norestart'" )
2020-08-30 09:29:44 +00:00
endif ( EXISTS ${ VCREDIST64 } )
SET ( OALREDIST "${OpenMW_BINARY_DIR}/oalinst.exe" )
if ( EXISTS ${ OALREDIST } )
INSTALL ( FILES ${ OALREDIST } DESTINATION "redist" )
SET ( CPACK_NSIS_EXTRA_INSTALL_COMMANDS " ${ CPACK_NSIS_EXTRA_INSTALL_COMMANDS }
E x e c W a i t ' \ \ \ " $ I N S T D I R \ \ \ \ r e d i s t \ \ \ \ o a l i n s t . e x e \ \ \ " / s ' " )
endif ( EXISTS ${ OALREDIST } )
if ( CMAKE_CL_64 )
SET ( CPACK_NSIS_INSTALL_ROOT "$PROGRAMFILES64" )
endif ( )
include ( CPack )
else ( WIN32 )
# Linux installation
# Install binaries
IF ( BUILD_OPENMW )
2021-01-20 02:25:46 +00:00
INSTALL ( PROGRAMS "$<TARGET_FILE:openmw>" DESTINATION "${BINDIR}" )
2020-08-30 09:29:44 +00:00
ENDIF ( BUILD_OPENMW )
IF ( BUILD_LAUNCHER )
INSTALL ( PROGRAMS "${INSTALL_SOURCE}/openmw-launcher" DESTINATION "${BINDIR}" )
ENDIF ( BUILD_LAUNCHER )
IF ( BUILD_BSATOOL )
INSTALL ( PROGRAMS "${INSTALL_SOURCE}/bsatool" DESTINATION "${BINDIR}" )
ENDIF ( BUILD_BSATOOL )
IF ( BUILD_ESMTOOL )
INSTALL ( PROGRAMS "${INSTALL_SOURCE}/esmtool" DESTINATION "${BINDIR}" )
ENDIF ( BUILD_ESMTOOL )
IF ( BUILD_NIFTEST )
INSTALL ( PROGRAMS "${INSTALL_SOURCE}/niftest" DESTINATION "${BINDIR}" )
ENDIF ( BUILD_NIFTEST )
IF ( BUILD_MWINIIMPORTER )
INSTALL ( PROGRAMS "${INSTALL_SOURCE}/openmw-iniimporter" DESTINATION "${BINDIR}" )
ENDIF ( BUILD_MWINIIMPORTER )
IF ( BUILD_ESSIMPORTER )
INSTALL ( PROGRAMS "${INSTALL_SOURCE}/openmw-essimporter" DESTINATION "${BINDIR}" )
ENDIF ( BUILD_ESSIMPORTER )
IF ( BUILD_OPENCS )
INSTALL ( PROGRAMS "${INSTALL_SOURCE}/openmw-cs" DESTINATION "${BINDIR}" )
ENDIF ( BUILD_OPENCS )
IF ( BUILD_WIZARD )
INSTALL ( PROGRAMS "${INSTALL_SOURCE}/openmw-wizard" DESTINATION "${BINDIR}" )
ENDIF ( BUILD_WIZARD )
2021-06-29 01:49:21 +00:00
if ( BUILD_NAVMESHTOOL )
install ( PROGRAMS "${INSTALL_SOURCE}/openmw-navmeshtool" DESTINATION "${BINDIR}" )
endif ( )
2021-11-21 14:28:40 +00:00
IF ( BUILD_BULLETOBJECTTOOL )
INSTALL ( PROGRAMS "${INSTALL_SOURCE}/openmw-bulletobjecttool" DESTINATION "${BINDIR}" )
ENDIF ( BUILD_BULLETOBJECTTOOL )
2020-08-30 09:29:44 +00:00
# Install icon and desktop file
INSTALL ( FILES "${OpenMW_BINARY_DIR}/org.openmw.launcher.desktop" DESTINATION "${DATAROOTDIR}/applications" COMPONENT "openmw" )
INSTALL ( FILES "${OpenMW_SOURCE_DIR}/files/launcher/images/openmw.png" DESTINATION "${ICONDIR}" COMPONENT "openmw" )
INSTALL ( FILES "${OpenMW_BINARY_DIR}/openmw.appdata.xml" DESTINATION "${DATAROOTDIR}/metainfo" COMPONENT "openmw" )
IF ( BUILD_OPENCS )
INSTALL ( FILES "${OpenMW_BINARY_DIR}/org.openmw.cs.desktop" DESTINATION "${DATAROOTDIR}/applications" COMPONENT "opencs" )
INSTALL ( FILES "${OpenMW_SOURCE_DIR}/files/opencs/openmw-cs.png" DESTINATION "${ICONDIR}" COMPONENT "opencs" )
ENDIF ( BUILD_OPENCS )
# Install global configuration files
2021-05-09 20:00:49 +00:00
INSTALL ( FILES "${INSTALL_SOURCE}/defaults.bin" DESTINATION "${SYSCONFDIR}" COMPONENT "openmw" )
2020-08-30 09:29:44 +00:00
INSTALL ( FILES "${INSTALL_SOURCE}/openmw.cfg.install" DESTINATION "${SYSCONFDIR}" RENAME "openmw.cfg" COMPONENT "openmw" )
INSTALL ( FILES "${INSTALL_SOURCE}/resources/version" DESTINATION "${SYSCONFDIR}" COMPONENT "openmw" )
INSTALL ( FILES "${INSTALL_SOURCE}/gamecontrollerdb.txt" DESTINATION "${SYSCONFDIR}" COMPONENT "openmw" )
IF ( BUILD_OPENCS )
2021-06-26 19:00:25 +00:00
INSTALL ( FILES "${INSTALL_SOURCE}/defaults-cs.bin" DESTINATION "${SYSCONFDIR}" COMPONENT "opencs" )
2020-08-30 09:29:44 +00:00
ENDIF ( BUILD_OPENCS )
# Install resources
INSTALL ( DIRECTORY "${INSTALL_SOURCE}/resources" DESTINATION "${DATADIR}" COMPONENT "Resources" )
INSTALL ( DIRECTORY DESTINATION "${DATADIR}/data" COMPONENT "Resources" )
endif ( WIN32 )
2020-10-08 19:34:03 +00:00
endif ( OPENMW_OSX_DEPLOYMENT AND APPLE )
2012-08-22 18:11:03 +00:00
2014-10-12 09:28:56 +00:00
# Doxygen Target -- simply run 'make doc' or 'make doc_pages'
2014-10-12 16:30:39 +00:00
# output directory for 'make doc' is "${OpenMW_BINARY_DIR}/docs/Doxygen"
# output directory for 'make doc_pages' is "${DOXYGEN_PAGES_OUTPUT_DIR}" if defined
# or "${OpenMW_BINARY_DIR}/docs/Pages" otherwise
2014-10-12 09:28:56 +00:00
find_package ( Doxygen )
2014-10-12 16:30:39 +00:00
if ( DOXYGEN_FOUND )
# determine output directory for doc_pages
if ( NOT DEFINED DOXYGEN_PAGES_OUTPUT_DIR )
set ( DOXYGEN_PAGES_OUTPUT_DIR "${OpenMW_BINARY_DIR}/docs/Pages" )
endif ( )
configure_file ( ${ OpenMW_SOURCE_DIR } /docs/Doxyfile.cmake ${ OpenMW_BINARY_DIR } /docs/Doxyfile @ONLY )
configure_file ( ${ OpenMW_SOURCE_DIR } /docs/DoxyfilePages.cmake ${ OpenMW_BINARY_DIR } /docs/DoxyfilePages @ONLY )
2014-10-12 09:28:56 +00:00
add_custom_target ( doc
$ { D O X Y G E N _ E X E C U T A B L E } $ { O p e n M W _ B I N A R Y _ D I R } / d o c s / D o x y f i l e
W O R K I N G _ D I R E C T O R Y $ { O p e n M W _ B I N A R Y _ D I R }
2014-10-12 16:30:39 +00:00
C O M M E N T " G e n e r a t i n g D o x y g e n d o c u m e n t a t i o n a t $ { O p e n M W _ B I N A R Y _ D I R } / d o c s / D o x y g e n "
V E R B A T I M )
2014-10-12 09:28:56 +00:00
add_custom_target ( doc_pages
$ { D O X Y G E N _ E X E C U T A B L E } $ { O p e n M W _ B I N A R Y _ D I R } / d o c s / D o x y f i l e P a g e s
W O R K I N G _ D I R E C T O R Y $ { O p e n M W _ B I N A R Y _ D I R }
2014-10-12 16:30:39 +00:00
C O M M E N T " G e n e r a t i n g d o c u m e n t a t i o n f o r t h e g i t h u b - p a g e s a t $ { D O X Y G E N _ P A G E S _ O U T P U T _ D I R } " V E R B A T I M )
endif ( )