| [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 |  | 
|---|
| [7956] | 35 | # Disable auto linking completely for Boost and POCO | 
|---|
| [5695] | 36 | ADD_COMPILER_FLAGS("-DBOOST_ALL_NO_LIB") | 
|---|
| [7956] | 37 | ADD_COMPILER_FLAGS("-DPOCO_NO_AUTOMATIC_LIBS") | 
|---|
| [2710] | 38 |  | 
|---|
| [5695] | 39 | # If no defines are specified, these libs get linked statically | 
|---|
 | 40 | ADD_COMPILER_FLAGS("-DBOOST_ALL_DYN_LINK" WIN32 LINK_BOOST_DYNAMIC) | 
|---|
| [7459] | 41 | #ADD_COMPILER_FLAGS("-DENET_DLL"           WIN32 LINK_ENET_DYNAMIC) | 
|---|
| [7944] | 42 | ADD_COMPILER_FLAGS("-DLUA_BUILD_AS_DLL"   WIN32 LINK_LUA5.1_DYNAMIC) | 
|---|
| [5781] | 43 | ADD_COMPILER_FLAGS("-DZLIB_DLL"           WIN32 LINK_ZLIB_DYNAMIC) | 
|---|
| [5695] | 44 | # If no defines are specified, these libs get linked dynamically | 
|---|
| [7941] | 45 | ADD_COMPILER_FLAGS("-DCEGUI_STATIC -DTOLUA_STATIC" WIN32 NOT LINK_CEGUI_DYNAMIC) | 
|---|
| [5695] | 46 | ADD_COMPILER_FLAGS("-DOGRE_STATIC_LIB"    WIN32 NOT LINK_OGRE_DYNAMIC) | 
|---|
| [5781] | 47 | ADD_COMPILER_FLAGS("-DSTATIC_BUILD"       WIN32 NOT LINK_TCL_DYNAMIC) | 
|---|
| [2710] | 48 |  | 
|---|
| [7163] | 49 | ######### Library Behaviour (external) ########## | 
|---|
 | 50 |  | 
|---|
| [5781] | 51 | # Use TinyXML++ | 
|---|
 | 52 | ADD_COMPILER_FLAGS("-DTIXML_USE_TICPP") | 
|---|
 | 53 |  | 
|---|
| [7163] | 54 | # Default linking for externals is SHARED | 
|---|
 | 55 | 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.") | 
|---|
 | 56 |  | 
|---|
 | 57 | IF(ORXONOX_EXTERNAL_LINK_MODE STREQUAL "SHARED") | 
|---|
 | 58 |   SET(_external_shared_link TRUE) | 
|---|
 | 59 | ELSE() | 
|---|
 | 60 |   SET(_external_shared_link FALSE) | 
|---|
 | 61 | ENDIF() | 
|---|
 | 62 | # If no defines are specified, these libs get linked dynamically | 
|---|
| [7459] | 63 | ADD_COMPILER_FLAGS("-DENET_DLL"                    WIN32     _external_shared_link) | 
|---|
| [7163] | 64 | ADD_COMPILER_FLAGS("-DOGRE_GUIRENDERER_STATIC_LIB" WIN32 NOT _external_shared_link) | 
|---|
 | 65 | ADD_COMPILER_FLAGS("-DOIS_STATIC_LIB"              WIN32 NOT _external_shared_link) | 
|---|
 | 66 |  | 
|---|
| [2710] | 67 | ############## Include Directories ############## | 
|---|
 | 68 |  | 
|---|
 | 69 | # Set the search paths for include files | 
|---|
 | 70 | INCLUDE_DIRECTORIES( | 
|---|
| [8071] | 71 |   # OrxonoxConfig.h | 
|---|
 | 72 |   ${CMAKE_CURRENT_BINARY_DIR} | 
|---|
 | 73 |  | 
|---|
 | 74 |   # All includes in "externals" should be prefixed with the path | 
|---|
 | 75 |   # relative to "external" to avoid conflicts | 
|---|
 | 76 |   ${CMAKE_CURRENT_SOURCE_DIR}/external | 
|---|
 | 77 |   # Include directories needed even if only included by Orxonox | 
|---|
 | 78 |   ${CMAKE_CURRENT_SOURCE_DIR}/external/bullet | 
|---|
 | 79 |   ${CMAKE_CURRENT_SOURCE_DIR}/external/ois | 
|---|
 | 80 |  | 
|---|
| [2710] | 81 |   # External | 
|---|
 | 82 |   ${OGRE_INCLUDE_DIR} | 
|---|
| [5781] | 83 |   ${CEGUI_INCLUDE_DIR} | 
|---|
| [8061] | 84 |   ${CEGUI_TOLUA_INCLUDE_DIR} | 
|---|
| [7459] | 85 |   #${ENET_INCLUDE_DIR} | 
|---|
| [2710] | 86 |   ${Boost_INCLUDE_DIRS} | 
|---|
| [7224] | 87 |   ${POCO_INCLUDE_DIR} | 
|---|
| [5781] | 88 |   ${OPENAL_INCLUDE_DIRS} | 
|---|
 | 89 |   ${ALUT_INCLUDE_DIR} | 
|---|
 | 90 |   ${VORBIS_INCLUDE_DIR} | 
|---|
 | 91 |   ${OGG_INCLUDE_DIR} | 
|---|
| [7944] | 92 |   ${LUA5.1_INCLUDE_DIR} | 
|---|
| [5781] | 93 |   ${TCL_INCLUDE_PATH} | 
|---|
 | 94 |   ${DIRECTX_INCLUDE_DIR} | 
|---|
 | 95 |   ${ZLIB_INCLUDE_DIR} | 
|---|
| [2710] | 96 | ) | 
|---|
 | 97 |  | 
|---|
| [8095] | 98 | IF(CEGUI_OLD_VERSION) | 
|---|
 | 99 |   INCLUDE_DIRECTORIES(${CEGUILUA_INCLUDE_DIR}) | 
|---|
 | 100 | ENDIF() | 
|---|
 | 101 |  | 
|---|
| [7451] | 102 | IF (DBGHELP_FOUND) | 
|---|
 | 103 |   INCLUDE_DIRECTORIES(${DBGHELP_INCLUDE_DIR}) | 
|---|
 | 104 | ENDIF() | 
|---|
 | 105 |  | 
|---|
| [7960] | 106 | ############## CEGUI OGRE Renderer ############## | 
|---|
 | 107 |  | 
|---|
 | 108 | IF(CEGUI_OGRE_RENDERER_BUILD_REQUIRED) | 
|---|
 | 109 |   SET(CEGUI_OGRE_RENDERER_LIBRARY ogreceguirenderer_orxonox) | 
|---|
 | 110 | ENDIF() | 
|---|
 | 111 |  | 
|---|
| [5752] | 112 | ################### Tolua Bind ################## | 
|---|
 | 113 |  | 
|---|
 | 114 | # Create directory because the tolua application doesn't work otherwise | 
|---|
 | 115 | IF(NOT EXISTS ${CMAKE_CURRENT_BINARY_DIR}/toluabind/${CMAKE_CFG_INTDIR}) | 
|---|
 | 116 |   FILE(MAKE_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/toluabind/${CMAKE_CFG_INTDIR}) | 
|---|
 | 117 | ENDIF() | 
|---|
 | 118 |  | 
|---|
 | 119 | INCLUDE_DIRECTORIES(${CMAKE_CURRENT_BINARY_DIR}/toluabind/${CMAKE_CFG_INTDIR}) | 
|---|
 | 120 |  | 
|---|
| [2710] | 121 | ################ Sub Directories ################ | 
|---|
 | 122 |  | 
|---|
| [5738] | 123 | ADD_SUBDIRECTORY(external) | 
|---|
 | 124 | ADD_SUBDIRECTORY(libraries) | 
|---|
| [5752] | 125 | ADD_SUBDIRECTORY(orxonox) | 
|---|
| [5738] | 126 | ADD_SUBDIRECTORY(modules) | 
|---|
| [1505] | 127 |  | 
|---|
| [7401] | 128 | ################## Executable ################### | 
|---|
| [1854] | 129 |  | 
|---|
| [5752] | 130 | INCLUDE_DIRECTORIES( | 
|---|
 | 131 |   ${CMAKE_CURRENT_SOURCE_DIR}/libraries | 
|---|
 | 132 |   ${CMAKE_CURRENT_SOURCE_DIR}/orxonox | 
|---|
 | 133 | ) | 
|---|
 | 134 |  | 
|---|
| [5738] | 135 | # Translate argument | 
|---|
 | 136 | IF(ORXONOX_USE_WINMAIN) | 
|---|
 | 137 |   SET(ORXONOX_WIN32 WIN32) | 
|---|
| [2710] | 138 | ENDIF() | 
|---|
| [1810] | 139 |  | 
|---|
| [5738] | 140 | ORXONOX_ADD_EXECUTABLE(orxonox-main | 
|---|
 | 141 |   # When defined as WIN32 this removes the console window on Windows | 
|---|
 | 142 |   ${ORXONOX_WIN32} | 
|---|
 | 143 |   LINK_LIBRARIES | 
|---|
 | 144 |     orxonox | 
|---|
 | 145 |   SOURCE_FILES | 
|---|
| [7819] | 146 |     Orxonox.cc | 
|---|
| [5738] | 147 |   OUTPUT_NAME orxonox | 
|---|
 | 148 | ) | 
|---|
| [7401] | 149 | # Main executable should depend on all modules | 
|---|
 | 150 | ADD_DEPENDENCIES(orxonox-main ${ORXONOX_MODULES}) | 
|---|
| [1810] | 151 |  | 
|---|
| [5752] | 152 | # Get name to configure the run scripts | 
|---|
| [5738] | 153 | GET_TARGET_PROPERTY(_exec_loc orxonox-main LOCATION) | 
|---|
 | 154 | GET_FILENAME_COMPONENT(_exec_name ${_exec_loc} NAME) | 
|---|
 | 155 | SET(ORXONOX_EXECUTABLE_NAME ${_exec_name} CACHE INTERNAL "") | 
|---|
| [5744] | 156 |  | 
|---|
 | 157 |  | 
|---|
 | 158 | # When using Visual Studio we want to use the output directory as working | 
|---|
 | 159 | # directory and we also want to specify where the external dlls | 
|---|
 | 160 | # (lua, ogre, etc.) are. The problem hereby is that these information cannot | 
|---|
 | 161 | # be specified in CMake because they are not stored in the actual project file. | 
|---|
 | 162 | # This workaround will create a configured *.vcproj.user file that holds the | 
|---|
 | 163 | # right values. When starting the solution for the first time, | 
|---|
 | 164 | # these get written to the *vcproj.yourPCname.yourname.user | 
|---|
 | 165 | IF(MSVC) | 
|---|
 | 166 |   IF(CMAKE_CL_64) | 
|---|
 | 167 |     SET(MSVC_PLATFORM "x64") | 
|---|
 | 168 |   ELSE() | 
|---|
 | 169 |     SET(MSVC_PLATFORM "Win32") | 
|---|
 | 170 |   ENDIF() | 
|---|
| [8057] | 171 |   IF(MSVC10) | 
|---|
 | 172 |     CONFIGURE_FILE("${CMAKE_CURRENT_SOURCE_DIR}/orxonox-main.vcxproj.user.in" "${CMAKE_CURRENT_BINARY_DIR}/orxonox-main.vcxproj.user") | 
|---|
 | 173 |   ELSE() | 
|---|
 | 174 |     STRING(REGEX REPLACE "^Visual Studio ([0-9][0-9]?).*$" "\\1" | 
|---|
 | 175 |            VISUAL_STUDIO_VERSION_SIMPLE "${CMAKE_GENERATOR}") | 
|---|
 | 176 |     CONFIGURE_FILE("${CMAKE_CURRENT_SOURCE_DIR}/orxonox-main.vcproj.user.in" "${CMAKE_CURRENT_BINARY_DIR}/orxonox-main.vcproj.user") | 
|---|
 | 177 |   ENDIF() | 
|---|
| [5744] | 178 | ENDIF(MSVC) | 
|---|
| [7401] | 179 |  | 
|---|
 | 180 | #################### Doxygen #################### | 
|---|
 | 181 |  | 
|---|
 | 182 | # Prepare include paths for Doxygen. This is necessary to display | 
|---|
 | 183 | # the correct path to use when including a file, e.g. | 
|---|
 | 184 | # core/XMLPort.h instead of src/core/XMLPort.h | 
|---|
 | 185 |  | 
|---|
 | 186 | INCLUDE_DIRECTORIES(${CMAKE_CURRENT_SOURCE_DIR}/modules) | 
|---|
 | 187 | GET_DIRECTORY_PROPERTY(_temp INCLUDE_DIRECTORIES) | 
|---|
 | 188 | # Replace ';' by spaces | 
|---|
 | 189 | STRING(REPLACE ";" " " _temp "${_temp}") | 
|---|
 | 190 | SET(DOXYGEN_INCLUDE_DIRECTORIES "${_temp}" PARENT_SCOPE) | 
|---|