[2710] | 1 | # |
---|
| 2 | # ORXONOX - the hottest 3D action shooter ever to exist |
---|
| 3 | # > www.orxonox.net < |
---|
| 4 | # |
---|
| 5 | # This program is free software; you can redistribute it and/or |
---|
| 6 | # modify it under the terms of the GNU General Public License |
---|
| 7 | # as published by the Free Software Foundation; either version 2 |
---|
| 8 | # of the License, or (at your option) any later version. |
---|
| 9 | # |
---|
| 10 | # This program is distributed in the hope that it will be useful, |
---|
| 11 | # but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
| 12 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
---|
| 13 | # GNU General Public License for more details. |
---|
| 14 | # |
---|
| 15 | # You should have received a copy of the GNU General Public License along |
---|
| 16 | # with this program; if not, write to the Free Software Foundation, |
---|
| 17 | # Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
---|
| 18 | # |
---|
[5695] | 19 | # |
---|
| 20 | # Author: |
---|
| 21 | # Reto Grieder |
---|
| 22 | # Description: |
---|
| 23 | # Configures the compilers and sets build options. |
---|
| 24 | # |
---|
[1505] | 25 | |
---|
[5695] | 26 | # Required macros and functions |
---|
[2710] | 27 | INCLUDE(FlagUtilities) |
---|
[3196] | 28 | INCLUDE(TargetUtilities) |
---|
[2710] | 29 | |
---|
[5695] | 30 | # Configure the two headers and set some options |
---|
| 31 | INCLUDE(OrxonoxConfig.cmake) |
---|
[2710] | 32 | |
---|
[7163] | 33 | ####### Library Behaviour (dependencies) ######## |
---|
[2710] | 34 | |
---|
[5695] | 35 | # Disable Boost auto linking completely |
---|
| 36 | ADD_COMPILER_FLAGS("-DBOOST_ALL_NO_LIB") |
---|
[2710] | 37 | |
---|
[5695] | 38 | # If no defines are specified, these libs get linked statically |
---|
| 39 | ADD_COMPILER_FLAGS("-DBOOST_ALL_DYN_LINK" WIN32 LINK_BOOST_DYNAMIC) |
---|
[5781] | 40 | ADD_COMPILER_FLAGS("-DENET_DLL" WIN32 LINK_ENET_DYNAMIC) |
---|
[5695] | 41 | ADD_COMPILER_FLAGS("-DLUA_BUILD_AS_DLL" WIN32 LINK_LUA_DYNAMIC) |
---|
[5781] | 42 | ADD_COMPILER_FLAGS("-DZLIB_DLL" WIN32 LINK_ZLIB_DYNAMIC) |
---|
[5695] | 43 | # If no defines are specified, these libs get linked dynamically |
---|
[5781] | 44 | ADD_COMPILER_FLAGS("-DCEGUI_STATIC" WIN32 NOT LINK_CEGUI_DYNAMIC) |
---|
[5695] | 45 | ADD_COMPILER_FLAGS("-DOGRE_STATIC_LIB" WIN32 NOT LINK_OGRE_DYNAMIC) |
---|
[5781] | 46 | ADD_COMPILER_FLAGS("-DSTATIC_BUILD" WIN32 NOT LINK_TCL_DYNAMIC) |
---|
[2710] | 47 | |
---|
[7163] | 48 | ######### Library Behaviour (external) ########## |
---|
| 49 | |
---|
[5781] | 50 | # Use TinyXML++ |
---|
| 51 | ADD_COMPILER_FLAGS("-DTIXML_USE_TICPP") |
---|
| 52 | |
---|
[7163] | 53 | # Default linking for externals is SHARED |
---|
| 54 | SET(ORXONOX_EXTERNAL_LINK_MODE SHARED CACHE STRING "Link mode for external libraries that we build ourselves. Note: on Windows, some libraries cannot be linked shared.") |
---|
| 55 | |
---|
| 56 | IF(ORXONOX_EXTERNAL_LINK_MODE STREQUAL "SHARED") |
---|
| 57 | SET(_external_shared_link TRUE) |
---|
| 58 | ELSE() |
---|
| 59 | SET(_external_shared_link FALSE) |
---|
| 60 | ENDIF() |
---|
| 61 | # If no defines are specified, these libs get linked dynamically |
---|
| 62 | ADD_COMPILER_FLAGS("-DCEGUILUA_STATIC" WIN32 NOT _external_shared_link) |
---|
| 63 | ADD_COMPILER_FLAGS("-DOGRE_GUIRENDERER_STATIC_LIB" WIN32 NOT _external_shared_link) |
---|
| 64 | ADD_COMPILER_FLAGS("-DOIS_STATIC_LIB" WIN32 NOT _external_shared_link) |
---|
| 65 | ADD_COMPILER_FLAGS("-DTOLUA_STATIC_BUILD" WIN32 NOT _external_shared_link) |
---|
| 66 | |
---|
[2710] | 67 | ############## Include Directories ############## |
---|
| 68 | |
---|
| 69 | # Set the search paths for include files |
---|
| 70 | INCLUDE_DIRECTORIES( |
---|
| 71 | # External |
---|
| 72 | ${OGRE_INCLUDE_DIR} |
---|
[5781] | 73 | ${CEGUI_INCLUDE_DIR} |
---|
| 74 | ${ENET_INCLUDE_DIR} |
---|
[2710] | 75 | ${Boost_INCLUDE_DIRS} |
---|
[7224] | 76 | ${POCO_INCLUDE_DIR} |
---|
[5781] | 77 | ${OPENAL_INCLUDE_DIRS} |
---|
| 78 | ${ALUT_INCLUDE_DIR} |
---|
| 79 | ${VORBIS_INCLUDE_DIR} |
---|
| 80 | ${OGG_INCLUDE_DIR} |
---|
[2710] | 81 | ${LUA_INCLUDE_DIR} |
---|
[5781] | 82 | ${TCL_INCLUDE_PATH} |
---|
| 83 | ${DIRECTX_INCLUDE_DIR} |
---|
| 84 | ${ZLIB_INCLUDE_DIR} |
---|
[3196] | 85 | ${VLD_INCLUDE_DIR} |
---|
[2710] | 86 | |
---|
[5752] | 87 | # All includes in "externals" should be prefixed with the path |
---|
| 88 | # relative to "external" to avoid conflicts |
---|
| 89 | ${CMAKE_CURRENT_SOURCE_DIR}/external |
---|
[5781] | 90 | # Include directories needed even if only included by Orxonox |
---|
| 91 | ${CMAKE_CURRENT_SOURCE_DIR}/external/bullet |
---|
| 92 | ${CMAKE_CURRENT_SOURCE_DIR}/external/ois |
---|
[5752] | 93 | |
---|
[2710] | 94 | # OrxonoxConfig.h |
---|
| 95 | ${CMAKE_CURRENT_BINARY_DIR} |
---|
| 96 | ) |
---|
| 97 | |
---|
[5781] | 98 | IF(CEGUILUA_USE_INTERNAL_LIBRARY) |
---|
| 99 | INCLUDE_DIRECTORIES(${CMAKE_CURRENT_SOURCE_DIR}/external/ceguilua/ceguilua-${CEGUI_VERSION}) |
---|
| 100 | ENDIF() |
---|
| 101 | |
---|
[5752] | 102 | ################### Tolua Bind ################## |
---|
| 103 | |
---|
| 104 | # Create directory because the tolua application doesn't work otherwise |
---|
| 105 | IF(NOT EXISTS ${CMAKE_CURRENT_BINARY_DIR}/toluabind/${CMAKE_CFG_INTDIR}) |
---|
| 106 | FILE(MAKE_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/toluabind/${CMAKE_CFG_INTDIR}) |
---|
| 107 | ENDIF() |
---|
| 108 | |
---|
| 109 | INCLUDE_DIRECTORIES(${CMAKE_CURRENT_BINARY_DIR}/toluabind/${CMAKE_CFG_INTDIR}) |
---|
| 110 | |
---|
[2710] | 111 | ################ Sub Directories ################ |
---|
| 112 | |
---|
[5738] | 113 | ADD_SUBDIRECTORY(external) |
---|
| 114 | ADD_SUBDIRECTORY(libraries) |
---|
[5752] | 115 | ADD_SUBDIRECTORY(orxonox) |
---|
[5738] | 116 | ADD_SUBDIRECTORY(modules) |
---|
[1505] | 117 | |
---|
[7401] | 118 | ################## Executable ################### |
---|
[1854] | 119 | |
---|
[5752] | 120 | INCLUDE_DIRECTORIES( |
---|
| 121 | ${CMAKE_CURRENT_SOURCE_DIR}/libraries |
---|
| 122 | ${CMAKE_CURRENT_SOURCE_DIR}/orxonox |
---|
| 123 | ) |
---|
| 124 | |
---|
[5738] | 125 | # Translate argument |
---|
| 126 | IF(ORXONOX_USE_WINMAIN) |
---|
| 127 | SET(ORXONOX_WIN32 WIN32) |
---|
[2710] | 128 | ENDIF() |
---|
[1810] | 129 | |
---|
[5738] | 130 | ORXONOX_ADD_EXECUTABLE(orxonox-main |
---|
| 131 | # When defined as WIN32 this removes the console window on Windows |
---|
| 132 | ${ORXONOX_WIN32} |
---|
| 133 | LINK_LIBRARIES |
---|
| 134 | orxonox |
---|
| 135 | SOURCE_FILES |
---|
| 136 | Orxonox.cc |
---|
| 137 | OUTPUT_NAME orxonox |
---|
| 138 | ) |
---|
[7401] | 139 | # Main executable should depend on all modules |
---|
| 140 | ADD_DEPENDENCIES(orxonox-main ${ORXONOX_MODULES}) |
---|
[1810] | 141 | |
---|
[5752] | 142 | # Get name to configure the run scripts |
---|
[5738] | 143 | GET_TARGET_PROPERTY(_exec_loc orxonox-main LOCATION) |
---|
| 144 | GET_FILENAME_COMPONENT(_exec_name ${_exec_loc} NAME) |
---|
| 145 | SET(ORXONOX_EXECUTABLE_NAME ${_exec_name} CACHE INTERNAL "") |
---|
[5744] | 146 | |
---|
| 147 | |
---|
| 148 | # When using Visual Studio we want to use the output directory as working |
---|
| 149 | # directory and we also want to specify where the external dlls |
---|
| 150 | # (lua, ogre, etc.) are. The problem hereby is that these information cannot |
---|
| 151 | # be specified in CMake because they are not stored in the actual project file. |
---|
| 152 | # This workaround will create a configured *.vcproj.user file that holds the |
---|
| 153 | # right values. When starting the solution for the first time, |
---|
| 154 | # these get written to the *vcproj.yourPCname.yourname.user |
---|
| 155 | IF(MSVC) |
---|
| 156 | IF(CMAKE_CL_64) |
---|
| 157 | SET(MSVC_PLATFORM "x64") |
---|
| 158 | ELSE() |
---|
| 159 | SET(MSVC_PLATFORM "Win32") |
---|
| 160 | ENDIF() |
---|
| 161 | STRING(REGEX REPLACE "^Visual Studio ([0-9][0-9]?) .*$" "\\1" |
---|
| 162 | VISUAL_STUDIO_VERSION_SIMPLE "${CMAKE_GENERATOR}") |
---|
| 163 | CONFIGURE_FILE("${CMAKE_CURRENT_SOURCE_DIR}/orxonox-main.vcproj.user.in" "${CMAKE_CURRENT_BINARY_DIR}/orxonox-main.vcproj.user") |
---|
| 164 | ENDIF(MSVC) |
---|
[7401] | 165 | |
---|
| 166 | #################### Doxygen #################### |
---|
| 167 | |
---|
| 168 | # Prepare include paths for Doxygen. This is necessary to display |
---|
| 169 | # the correct path to use when including a file, e.g. |
---|
| 170 | # core/XMLPort.h instead of src/core/XMLPort.h |
---|
| 171 | |
---|
| 172 | INCLUDE_DIRECTORIES(${CMAKE_CURRENT_SOURCE_DIR}/modules) |
---|
| 173 | GET_DIRECTORY_PROPERTY(_temp INCLUDE_DIRECTORIES) |
---|
| 174 | # Replace ';' by spaces |
---|
| 175 | STRING(REPLACE ";" " " _temp "${_temp}") |
---|
| 176 | SET(DOXYGEN_INCLUDE_DIRECTORIES "${_temp}" PARENT_SCOPE) |
---|