| 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 |  # | 
|---|
| 19 |  # | 
|---|
| 20 |  #  Author: | 
|---|
| 21 |  #    Reto Grieder | 
|---|
| 22 |  #  Description: | 
|---|
| 23 |  #    Configures the compilers and sets build options. | 
|---|
| 24 |  # | 
|---|
| 25 |  | 
|---|
| 26 | # Required macros and functions | 
|---|
| 27 | INCLUDE(FlagUtilities) | 
|---|
| 28 |  | 
|---|
| 29 | ####### Library Behaviour (dependencies) ######## | 
|---|
| 30 |  | 
|---|
| 31 | # Disable auto linking completely for Boost and POCO | 
|---|
| 32 | ADD_COMPILER_FLAGS("-DBOOST_ALL_NO_LIB") | 
|---|
| 33 | ADD_COMPILER_FLAGS("-DPOCO_NO_AUTOMATIC_LIBS") | 
|---|
| 34 |  | 
|---|
| 35 | IF(WIN32) | 
|---|
| 36 |   # If no defines are specified, these libs get linked statically | 
|---|
| 37 |   ADD_COMPILER_FLAGS("-DBOOST_ALL_DYN_LINK" LINK_BOOST_DYNAMIC) | 
|---|
| 38 |   #ADD_COMPILER_FLAGS("-DENET_DLL"           LINK_ENET_DYNAMIC) | 
|---|
| 39 |   ADD_COMPILER_FLAGS("-DLUA_BUILD_AS_DLL"   LINK_LUA5.1_DYNAMIC) | 
|---|
| 40 |   # If no defines are specified, these libs get linked dynamically | 
|---|
| 41 |   ADD_COMPILER_FLAGS("-DCEGUI_STATIC -DTOLUA_STATIC" NOT LINK_CEGUI_DYNAMIC) | 
|---|
| 42 |   ADD_COMPILER_FLAGS("-DOGRE_STATIC_LIB"    NOT LINK_OGRE_DYNAMIC) | 
|---|
| 43 |   ADD_COMPILER_FLAGS("-DSTATIC_BUILD"       NOT LINK_TCL_DYNAMIC) | 
|---|
| 44 |  | 
|---|
| 45 |   # Target Windows XP as minimum Windows version | 
|---|
| 46 |   # And try to catch all the different macro defines for that... | 
|---|
| 47 |   IF(MINGW) | 
|---|
| 48 |     ADD_COMPILER_FLAGS("-D_WIN32_WINNT=0x05010000") | 
|---|
| 49 |     ADD_COMPILER_FLAGS("-D_WIN32_WINDOWS=0x05010000") | 
|---|
| 50 |     ADD_COMPILER_FLAGS("-DWINVER=0x05010000") | 
|---|
| 51 |     ADD_COMPILER_FLAGS("-DNTDDI_VERSION=0x05010000") | 
|---|
| 52 |   ELSE() | 
|---|
| 53 |     ADD_COMPILER_FLAGS("-D_WIN32_WINNT=0x0501") | 
|---|
| 54 |     ADD_COMPILER_FLAGS("-D_WIN32_WINDOWS=0x0501") | 
|---|
| 55 |     ADD_COMPILER_FLAGS("-DWINVER=0x0501") | 
|---|
| 56 |     ADD_COMPILER_FLAGS("-DNTDDI_VERSION=0x05010000") | 
|---|
| 57 |   ENDIF() | 
|---|
| 58 | ENDIF(WIN32) | 
|---|
| 59 |  | 
|---|
| 60 | # Visual Leak Dectector configuration | 
|---|
| 61 | IF(MSVC AND VLD_FOUND) | 
|---|
| 62 |   OPTION(VISUAL_LEAK_DETECTOR_ENABLE "Memory leak detector" OFF) | 
|---|
| 63 |   IF(VISUAL_LEAK_DETECTOR_ENABLE) | 
|---|
| 64 |     # Force library linking by forcing the inclusion of a symbol | 
|---|
| 65 |     ADD_LINKER_FLAGS("-INCLUDE:__imp_?vld@@3VVisualLeakDetector@@A" Debug) | 
|---|
| 66 |     IF(MSVC90) | 
|---|
| 67 |       # VS 2008 incremental linker crashes with /INCLUDE most of the time | 
|---|
| 68 |       REMOVE_LINKER_FLAGS("-INCREMENTAL:YES" Debug) | 
|---|
| 69 |       ADD_LINKER_FLAGS   ("-INCREMENTAL:NO"  Debug) | 
|---|
| 70 |     ENDIF() | 
|---|
| 71 |   ENDIF() | 
|---|
| 72 | ENDIF() | 
|---|
| 73 |  | 
|---|
| 74 | ######### Library Behaviour (external) ########## | 
|---|
| 75 |  | 
|---|
| 76 | # Use TinyXML++ | 
|---|
| 77 | ADD_COMPILER_FLAGS("-DTIXML_USE_TICPP") | 
|---|
| 78 |  | 
|---|
| 79 | # Default linking for externals | 
|---|
| 80 | IF(CMAKE_BUILD_TYPE MATCHES "(Debug|RelForDevs)") | 
|---|
| 81 |   SET(_default_link_mode "SHARED") | 
|---|
| 82 | ELSE() | 
|---|
| 83 |   SET(_default_link_mode "STATIC") | 
|---|
| 84 | ENDIF() | 
|---|
| 85 | SET(_message "Link mode for external libraries that we build ourselves. | 
|---|
| 86 | MSVC Note: certain libraries will not be linked shared.") | 
|---|
| 87 | SET(ORXONOX_EXTERNAL_LINK_MODE "${_default_link_mode}" CACHE STRING "${_message}") | 
|---|
| 88 |  | 
|---|
| 89 | IF(ORXONOX_EXTERNAL_LINK_MODE STREQUAL "SHARED") | 
|---|
| 90 |   SET(_external_shared_link TRUE) | 
|---|
| 91 | ELSE() | 
|---|
| 92 |   SET(_external_shared_link FALSE) | 
|---|
| 93 | ENDIF() | 
|---|
| 94 | # If no defines are specified, these libs get linked dynamically | 
|---|
| 95 | ADD_COMPILER_FLAGS("-DENET_DLL"                    WIN32     _external_shared_link) | 
|---|
| 96 | ADD_COMPILER_FLAGS("-DOGRE_GUIRENDERER_STATIC_LIB" WIN32 NOT _external_shared_link) | 
|---|
| 97 | ADD_COMPILER_FLAGS("-DOIS_STATIC_LIB"              WIN32 NOT _external_shared_link) | 
|---|
| 98 |  | 
|---|
| 99 | ############## Include Directories ############## | 
|---|
| 100 |  | 
|---|
| 101 | # Set the search paths for include files | 
|---|
| 102 | INCLUDE_DIRECTORIES( | 
|---|
| 103 |   # OrxonoxConfig.h | 
|---|
| 104 |   ${CMAKE_CURRENT_BINARY_DIR} | 
|---|
| 105 |  | 
|---|
| 106 |   # All includes in "externals" should be prefixed with the path | 
|---|
| 107 |   # relative to "external" to avoid conflicts | 
|---|
| 108 |   ../src/external | 
|---|
| 109 |   # Include directories needed even if only included by Orxonox | 
|---|
| 110 |   ../src/external/bullet | 
|---|
| 111 |   ../src/external/ois | 
|---|
| 112 |  | 
|---|
| 113 |   # External | 
|---|
| 114 |   ${OGRE_INCLUDE_DIR} | 
|---|
| 115 |   ${CEGUI_INCLUDE_DIR} | 
|---|
| 116 |   ${CEGUI_TOLUA_INCLUDE_DIR} | 
|---|
| 117 |   #${ENET_INCLUDE_DIR} | 
|---|
| 118 |   ${Boost_INCLUDE_DIRS} | 
|---|
| 119 |   ${POCO_INCLUDE_DIR} | 
|---|
| 120 |   ${OPENAL_INCLUDE_DIRS} | 
|---|
| 121 |   ${ALUT_INCLUDE_DIR} | 
|---|
| 122 |   ${VORBIS_INCLUDE_DIR} | 
|---|
| 123 |   ${OGG_INCLUDE_DIR} | 
|---|
| 124 |   ${LUA5.1_INCLUDE_DIR} | 
|---|
| 125 |   ${TCL_INCLUDE_PATH} | 
|---|
| 126 |   ${DIRECTX_INCLUDE_DIR} | 
|---|
| 127 |   ${ZLIB_INCLUDE_DIR} | 
|---|
| 128 |   ${BLUETOOTH_INCLUDE_DIR} | 
|---|
| 129 | ) | 
|---|
| 130 |  | 
|---|
| 131 | IF(CEGUI_OLD_VERSION) | 
|---|
| 132 |   INCLUDE_DIRECTORIES(${CEGUILUA_INCLUDE_DIR}) | 
|---|
| 133 | ENDIF() | 
|---|
| 134 |  | 
|---|
| 135 | IF (DBGHELP_FOUND) | 
|---|
| 136 |   INCLUDE_DIRECTORIES(${DBGHELP_INCLUDE_DIR}) | 
|---|
| 137 | ENDIF() | 
|---|
| 138 |  | 
|---|
| 139 | IF(VISUAL_LEAK_DETECTOR_ENABLE) | 
|---|
| 140 |   INCLUDE_DIRECTORIES(${VLD_INCLUDE_DIR}) | 
|---|
| 141 | ENDIF() | 
|---|
| 142 |  | 
|---|
| 143 | ############## CEGUI OGRE Renderer ############## | 
|---|
| 144 |  | 
|---|
| 145 | IF(CEGUI_OGRE_RENDERER_BUILD_REQUIRED) | 
|---|
| 146 |   SET(CEGUI_OGRE_RENDERER_LIBRARY ogreceguirenderer_orxonox) | 
|---|
| 147 | ENDIF() | 
|---|
| 148 |  | 
|---|
| 149 | ################### Tolua Bind ################## | 
|---|
| 150 |  | 
|---|
| 151 | # Add hook script to the lua code that generates the bindings | 
|---|
| 152 | SET(TOLUA_PARSER_HOOK_SCRIPT ${CMAKE_CURRENT_SOURCE_DIR}/libraries/core/ToluaInterfaceHook.lua) | 
|---|
| 153 | SET(TOLUA_PARSER_DEPENDENCIES ${TOLUA_PARSER_DEPENDENCIES} ${TOLUA_PARSER_HOOK_SCRIPT}) | 
|---|