2011-11-06 09:30:15 +01:00
|
|
|
project (Components)
|
2014-01-22 17:33:55 +01:00
|
|
|
|
|
|
|
# Version file
|
2015-07-18 03:01:06 +02:00
|
|
|
set (VERSION_IN_FILE "${OpenMW_SOURCE_DIR}/files/version.in")
|
2017-10-11 21:58:55 +01:00
|
|
|
set (VERSION_FILE_PATH_BASE "${OpenMW_BINARY_DIR}")
|
|
|
|
set (VERSION_FILE_PATH_RELATIVE resources/version)
|
2014-12-30 18:37:33 -03:00
|
|
|
if (GIT_CHECKOUT)
|
2017-10-24 23:29:18 +01:00
|
|
|
get_generator_is_multi_config(multi_config)
|
|
|
|
add_custom_target (git-version
|
2015-07-18 03:01:06 +02:00
|
|
|
COMMAND ${CMAKE_COMMAND}
|
|
|
|
-DGIT_EXECUTABLE=${GIT_EXECUTABLE}
|
2014-12-30 18:37:33 -03:00
|
|
|
-DPROJECT_SOURCE_DIR=${PROJECT_SOURCE_DIR}
|
2015-07-18 03:01:06 +02:00
|
|
|
-DVERSION_IN_FILE=${VERSION_IN_FILE}
|
2017-10-11 21:58:55 +01:00
|
|
|
-DVERSION_FILE_PATH_BASE=${VERSION_FILE_PATH_BASE}
|
|
|
|
-DVERSION_FILE_PATH_RELATIVE=${VERSION_FILE_PATH_RELATIVE}
|
2015-07-18 03:01:06 +02:00
|
|
|
-DOPENMW_VERSION_MAJOR=${OPENMW_VERSION_MAJOR}
|
|
|
|
-DOPENMW_VERSION_MINOR=${OPENMW_VERSION_MINOR}
|
|
|
|
-DOPENMW_VERSION_RELEASE=${OPENMW_VERSION_RELEASE}
|
|
|
|
-DOPENMW_VERSION=${OPENMW_VERSION}
|
2017-10-24 23:31:40 +01:00
|
|
|
-DMACROSFILE=${CMAKE_SOURCE_DIR}/cmake/OpenMWMacros.cmake
|
|
|
|
"-DCMAKE_CONFIGURATION_TYPES=${CMAKE_CONFIGURATION_TYPES}"
|
|
|
|
-Dgenerator_is_multi_config_var=${multi_config}
|
2014-12-30 18:37:33 -03:00
|
|
|
-P ${CMAKE_CURRENT_SOURCE_DIR}/../cmake/GitVersion.cmake
|
2015-07-18 03:01:06 +02:00
|
|
|
VERBATIM)
|
2014-12-30 18:37:33 -03:00
|
|
|
else (GIT_CHECKOUT)
|
2017-10-11 21:58:55 +01:00
|
|
|
configure_resource_file(${VERSION_IN_FILE} ${VERSION_FILE_PATH_BASE} ${VERSION_FILE_PATH_RELATIVE})
|
2014-12-30 18:37:33 -03:00
|
|
|
endif (GIT_CHECKOUT)
|
2014-01-22 17:33:55 +01:00
|
|
|
|
2015-12-03 21:29:50 +03:00
|
|
|
if (OPENGL_ES)
|
|
|
|
find_package(OpenGLES REQUIRED)
|
2016-05-02 22:09:48 -04:00
|
|
|
else()
|
2015-12-02 22:40:04 +03:00
|
|
|
find_package(OpenGL REQUIRED)
|
|
|
|
endif()
|
2015-05-01 01:15:25 +02:00
|
|
|
|
2011-11-06 09:30:15 +01:00
|
|
|
# source files
|
|
|
|
|
2012-03-30 18:38:33 +02:00
|
|
|
add_component_dir (settings
|
|
|
|
settings
|
|
|
|
)
|
|
|
|
|
2011-11-06 09:30:15 +01:00
|
|
|
add_component_dir (bsa
|
2015-02-17 17:08:55 +01:00
|
|
|
bsa_file
|
2011-11-06 09:30:15 +01:00
|
|
|
)
|
|
|
|
|
2015-03-17 21:59:39 +01:00
|
|
|
add_component_dir (vfs
|
2015-03-19 17:49:41 +01:00
|
|
|
manager archive bsaarchive filesystemarchive registerarchives
|
2015-03-17 21:59:39 +01:00
|
|
|
)
|
|
|
|
|
2015-03-26 18:02:51 +01:00
|
|
|
add_component_dir (resource
|
2017-02-22 02:18:18 +01:00
|
|
|
scenemanager keyframemanager imagemanager bulletshapemanager bulletshape niffilemanager objectcache multiobjectcache resourcesystem resourcemanager stats
|
2015-03-26 18:02:51 +01:00
|
|
|
)
|
|
|
|
|
2016-02-16 18:18:48 +01:00
|
|
|
add_component_dir (shader
|
|
|
|
shadermanager shadervisitor
|
|
|
|
)
|
|
|
|
|
2015-03-26 18:02:51 +01:00
|
|
|
add_component_dir (sceneutil
|
2017-09-01 22:56:09 +02:00
|
|
|
clone attach visitor util statesetupdater controller skeleton riggeometry morphgeometry lightcontroller
|
2017-02-23 19:42:12 +01:00
|
|
|
lightmanager lightutil positionattitudetransform workqueue unrefqueue pathgridutil waterutil writescene serialize optimizer
|
2015-03-26 18:02:51 +01:00
|
|
|
)
|
|
|
|
|
2011-11-06 09:30:15 +01:00
|
|
|
add_component_dir (nif
|
2015-09-24 15:21:42 +02:00
|
|
|
controlled effect niftypes record controller extra node record_ptr data niffile property nifkey base nifstream
|
2011-11-06 09:30:15 +01:00
|
|
|
)
|
|
|
|
|
2015-02-23 21:06:10 +01:00
|
|
|
add_component_dir (nifosg
|
2015-04-21 20:30:48 +02:00
|
|
|
nifloader controller particle userdata
|
2015-02-23 21:06:10 +01:00
|
|
|
)
|
|
|
|
|
2015-05-12 03:02:15 +02:00
|
|
|
add_component_dir (nifbullet
|
2015-11-16 23:30:10 +01:00
|
|
|
bulletnifloader
|
2015-05-12 03:02:15 +02:00
|
|
|
)
|
2011-11-06 09:30:15 +01:00
|
|
|
|
|
|
|
add_component_dir (to_utf8
|
|
|
|
to_utf8
|
|
|
|
)
|
|
|
|
|
|
|
|
add_component_dir (esm
|
2012-09-23 22:41:41 +04:00
|
|
|
attr defs esmcommon esmreader esmwriter loadacti loadalch loadappa loadarmo loadbody loadbook loadbsgn loadcell
|
2015-01-19 13:16:12 +01:00
|
|
|
loadclas loadclot loadcont loadcrea loaddial loaddoor loadench loadfact loadglob loadgmst
|
2015-01-25 01:53:20 +01:00
|
|
|
loadinfo loadingr loadland loadlevlist loadligh loadlock loadprob loadrepa loadltex loadmgef loadmisc
|
2011-11-06 09:30:15 +01:00
|
|
|
loadnpc loadpgrd loadrace loadregn loadscpt loadskil loadsndg loadsoun loadspel loadsscr loadstat
|
2013-07-22 20:50:04 +02:00
|
|
|
loadweap records aipackage effectlist spelllist variant variantimp loadtes3 cellref filter
|
2015-01-19 10:34:49 +01:00
|
|
|
savedgame journalentry queststate locals globalscript player objectstate cellid cellstate globalmap inventorystate containerstate npcstate creaturestate dialoguestate statstate
|
2014-08-03 10:12:03 +02:00
|
|
|
npcstats creaturestats weatherstate quickkeys fogstate spellstate activespells creaturelevliststate doorstate projectilestate debugprofile
|
2016-10-20 02:12:01 +02:00
|
|
|
aisequence magiceffects util custommarkerstate stolenitems transport animationstate controlsstate
|
2011-11-06 09:30:15 +01:00
|
|
|
)
|
|
|
|
|
2014-08-07 20:31:07 +02:00
|
|
|
add_component_dir (esmterrain
|
|
|
|
storage
|
2011-11-06 09:30:15 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
add_component_dir (misc
|
2016-07-09 03:18:45 +02:00
|
|
|
utf8stream stringops resourcehelpers rng messageformatparser
|
2011-11-06 09:30:15 +01:00
|
|
|
)
|
|
|
|
|
2014-09-22 15:36:42 +02:00
|
|
|
IF(NOT WIN32 AND NOT APPLE)
|
|
|
|
add_definitions(-DGLOBAL_DATA_PATH="${GLOBAL_DATA_PATH}")
|
|
|
|
add_definitions(-DGLOBAL_CONFIG_PATH="${GLOBAL_CONFIG_PATH}")
|
|
|
|
ENDIF()
|
2011-11-06 09:30:15 +01:00
|
|
|
add_component_dir (files
|
2016-07-27 00:58:31 +01:00
|
|
|
linuxpath androidpath windowspath macospath fixedpath multidircollection collections configurationmanager escape
|
2015-05-28 02:34:38 +02:00
|
|
|
lowlevelfile constrainedfilestream memorystream
|
2011-11-06 09:30:15 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
add_component_dir (compiler
|
|
|
|
context controlparser errorhandler exception exprparser extensions fileparser generator
|
|
|
|
lineparser literals locals output parser scanner scriptparser skipparser streamerrorhandler
|
2014-02-10 13:01:52 +01:00
|
|
|
stringparser tokenloc nullerrorhandler opcodes extensions0 declarationparser
|
2014-12-17 15:03:05 +01:00
|
|
|
quickfileparser discardparser junkparser
|
2011-11-06 09:30:15 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
add_component_dir (interpreter
|
|
|
|
context controlopcodes genericopcodes installopcodes interpreter localopcodes mathopcodes
|
2012-12-20 23:16:34 +00:00
|
|
|
miscopcodes opcodes runtime scriptopcodes spatialopcodes types defines
|
2011-11-06 09:30:15 +01:00
|
|
|
)
|
|
|
|
|
2012-12-25 23:20:39 +04:00
|
|
|
add_component_dir (translation
|
|
|
|
translation
|
2012-12-23 23:23:24 +04:00
|
|
|
)
|
2013-11-06 10:21:25 +01:00
|
|
|
|
2013-08-16 13:01:52 +02:00
|
|
|
add_component_dir (terrain
|
2017-03-08 22:16:03 +01:00
|
|
|
storage world buffercache defs terraingrid material terraindrawable texturemanager chunkmanager compositemaprenderer quadtreeworld quadtreenode viewdata
|
2013-08-16 13:01:52 +02:00
|
|
|
)
|
2013-11-06 10:21:25 +01:00
|
|
|
|
2013-08-27 15:48:13 +02:00
|
|
|
add_component_dir (loadinglistener
|
|
|
|
loadinglistener
|
|
|
|
)
|
2012-12-23 23:23:24 +04:00
|
|
|
|
2015-05-01 01:15:25 +02:00
|
|
|
add_component_dir (myguiplatform
|
2015-11-08 18:21:25 +01:00
|
|
|
myguirendermanager myguidatamanager myguiplatform myguitexture myguiloglistener additivelayer scalinglayer
|
2015-05-01 01:15:25 +02:00
|
|
|
)
|
|
|
|
|
2014-09-12 04:27:23 +02:00
|
|
|
add_component_dir (widgets
|
2015-01-24 19:26:31 +01:00
|
|
|
box imagebutton tags list numericeditbox sharedstatebutton windowcaption widgets
|
2014-09-12 04:27:23 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
add_component_dir (fontloader
|
|
|
|
fontloader
|
|
|
|
)
|
|
|
|
|
2015-05-13 02:52:04 +02:00
|
|
|
add_component_dir (sdlutil
|
2015-05-14 20:31:16 +02:00
|
|
|
sdlgraphicswindow imagetosurface sdlinputwrapper sdlvideowrapper OISCompat events sdlcursormanager
|
2015-05-13 02:52:04 +02:00
|
|
|
)
|
|
|
|
|
2014-01-22 17:33:55 +01:00
|
|
|
add_component_dir (version
|
|
|
|
version
|
|
|
|
)
|
2013-10-30 14:04:33 +01:00
|
|
|
|
2016-01-06 12:46:06 +01:00
|
|
|
add_component_dir (fallback
|
|
|
|
fallback validate
|
|
|
|
)
|
|
|
|
|
2013-10-22 21:52:35 -05:00
|
|
|
set (ESM_UI ${CMAKE_SOURCE_DIR}/files/ui/contentselector.ui
|
2013-08-16 22:23:21 -05:00
|
|
|
)
|
2013-11-06 10:21:25 +01:00
|
|
|
|
2015-12-03 08:54:14 +03:00
|
|
|
if (USE_QT)
|
2015-12-02 22:40:04 +03:00
|
|
|
add_component_qt_dir (contentselector
|
|
|
|
model/modelitem model/esmfile
|
|
|
|
model/naturalsort model/contentmodel
|
|
|
|
model/loadordererror
|
|
|
|
view/combobox view/contentselector
|
|
|
|
)
|
|
|
|
add_component_qt_dir (config
|
|
|
|
gamesettings
|
|
|
|
launchersettings
|
|
|
|
settingsbase
|
|
|
|
)
|
|
|
|
|
|
|
|
add_component_qt_dir (process
|
|
|
|
processinvoker
|
|
|
|
)
|
|
|
|
|
|
|
|
if (DESIRED_QT_VERSION MATCHES 4)
|
|
|
|
include(${QT_USE_FILE})
|
|
|
|
QT4_WRAP_UI(ESM_UI_HDR ${ESM_UI})
|
|
|
|
QT4_WRAP_CPP(MOC_SRCS ${COMPONENT_MOC_FILES})
|
|
|
|
else()
|
|
|
|
QT5_WRAP_UI(ESM_UI_HDR ${ESM_UI})
|
|
|
|
QT5_WRAP_CPP(MOC_SRCS ${COMPONENT_MOC_FILES})
|
|
|
|
endif()
|
2015-06-12 15:10:12 +02:00
|
|
|
endif()
|
2013-01-27 22:40:38 +01:00
|
|
|
|
2014-09-11 23:12:38 +02:00
|
|
|
if (CMAKE_COMPILER_IS_GNUCXX OR CMAKE_CXX_COMPILER_ID MATCHES "Clang")
|
|
|
|
if("${CMAKE_SYSTEM_PROCESSOR}" STREQUAL "x86_64" AND NOT APPLE)
|
|
|
|
add_definitions(-fPIC)
|
|
|
|
endif()
|
|
|
|
endif ()
|
|
|
|
|
2016-05-09 19:33:24 +03:00
|
|
|
include_directories(${Bullet_INCLUDE_DIRS} ${CMAKE_CURRENT_BINARY_DIR})
|
2011-11-06 09:30:15 +01:00
|
|
|
|
2013-08-16 22:23:21 -05:00
|
|
|
add_library(components STATIC ${COMPONENT_FILES} ${MOC_SRCS} ${ESM_UI_HDR})
|
2012-01-28 01:36:17 +01:00
|
|
|
|
2015-12-03 08:54:14 +03:00
|
|
|
if (OPENGL_ES)
|
|
|
|
set(GL_LIB ${OPENGLES_gl_LIBRARY})
|
2015-12-02 22:40:04 +03:00
|
|
|
else()
|
2015-12-03 08:54:14 +03:00
|
|
|
set(GL_LIB ${OPENGL_gl_LIBRARY})
|
2015-12-02 22:40:04 +03:00
|
|
|
endif()
|
2012-01-28 01:36:17 +01:00
|
|
|
|
2016-05-02 22:09:48 -04:00
|
|
|
target_link_libraries(components
|
2015-12-03 08:54:14 +03:00
|
|
|
${Boost_SYSTEM_LIBRARY}
|
|
|
|
${Boost_FILESYSTEM_LIBRARY}
|
|
|
|
${Boost_THREAD_LIBRARY}
|
|
|
|
${Boost_PROGRAM_OPTIONS_LIBRARY}
|
|
|
|
${OSG_LIBRARIES}
|
|
|
|
${OPENTHREADS_LIBRARIES}
|
|
|
|
${OSGPARTICLE_LIBRARIES}
|
|
|
|
${OSGUTIL_LIBRARIES}
|
|
|
|
${OSGDB_LIBRARIES}
|
|
|
|
${OSGVIEWER_LIBRARIES}
|
2017-02-22 02:18:18 +01:00
|
|
|
${OSGTEXT_LIBRARIES}
|
2015-12-03 08:54:14 +03:00
|
|
|
${OSGGA_LIBRARIES}
|
|
|
|
${OSGANIMATION_LIBRARIES}
|
2016-05-09 19:33:24 +03:00
|
|
|
${Bullet_LIBRARIES}
|
2016-11-14 00:01:22 -06:00
|
|
|
${SDL2_LIBRARIES}
|
2015-12-03 08:54:14 +03:00
|
|
|
# For MyGUI platform
|
|
|
|
${GL_LIB}
|
2016-06-12 23:34:53 +03:00
|
|
|
${MyGUI_LIBRARIES}
|
2015-12-03 08:54:14 +03:00
|
|
|
)
|
|
|
|
|
2015-06-12 15:22:19 +02:00
|
|
|
if (WIN32)
|
|
|
|
target_link_libraries(components
|
|
|
|
${Boost_LOCALE_LIBRARY})
|
|
|
|
endif()
|
|
|
|
|
2015-12-03 08:54:14 +03:00
|
|
|
if (USE_QT)
|
2015-12-02 22:40:04 +03:00
|
|
|
if (DESIRED_QT_VERSION MATCHES 4)
|
|
|
|
target_link_libraries(components
|
|
|
|
${QT_QTCORE_LIBRARY}
|
|
|
|
${QT_QTGUI_LIBRARY})
|
|
|
|
else()
|
|
|
|
qt5_use_modules(components Widgets Core)
|
|
|
|
endif()
|
2015-06-12 15:10:12 +02:00
|
|
|
endif()
|
|
|
|
|
2014-12-30 18:37:33 -03:00
|
|
|
if (GIT_CHECKOUT)
|
|
|
|
add_dependencies (components git-version)
|
|
|
|
endif (GIT_CHECKOUT)
|
|
|
|
|
2013-06-22 11:33:22 +02:00
|
|
|
if (WIN32)
|
2015-07-19 23:37:20 +09:00
|
|
|
target_link_libraries(components shlwapi)
|
|
|
|
if(MINGW)
|
|
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -DNOGDI")
|
|
|
|
endif(MINGW)
|
2013-06-22 11:33:22 +02:00
|
|
|
endif()
|
|
|
|
|
2012-07-15 21:27:57 +02:00
|
|
|
# Fix for not visible pthreads functions for linker with glibc 2.15
|
|
|
|
if (UNIX AND NOT APPLE)
|
|
|
|
target_link_libraries(components ${CMAKE_THREAD_LIBS_INIT})
|
|
|
|
endif()
|
|
|
|
|
|
|
|
|
2012-01-28 01:36:17 +01:00
|
|
|
# Make the variable accessible for other subdirectories
|
|
|
|
set(COMPONENT_FILES ${COMPONENT_FILES} PARENT_SCOPE)
|