| [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 |  # | 
|---|
| [1505] | 19 |  | 
|---|
| [2710] | 20 | ################ Various Options ################ | 
|---|
 | 21 |  | 
|---|
 | 22 | # various macro includes | 
|---|
 | 23 | INCLUDE(FlagUtilities) | 
|---|
| [3196] | 24 | INCLUDE(TargetUtilities) | 
|---|
| [2710] | 25 |  | 
|---|
 | 26 | # Use TinyXML++ | 
|---|
 | 27 | ADD_COMPILER_FLAGS("-DTIXML_USE_TICPP") | 
|---|
 | 28 | # OIS dynamic linking requires macro definition, at least for Windows | 
|---|
 | 29 | ADD_COMPILER_FLAGS("-DOIS_DYNAMIC_LIB") | 
|---|
 | 30 |  | 
|---|
 | 31 | ################ OrxonoxConfig.h ################ | 
|---|
 | 32 |  | 
|---|
 | 33 | # Check endianness | 
|---|
 | 34 | INCLUDE(TestBigEndian) | 
|---|
 | 35 | TEST_BIG_ENDIAN(ORXONOX_BIG_ENDIAN) | 
|---|
 | 36 | IF(NOT ORXONOX_BIG_ENDIAN) | 
|---|
 | 37 |   SET(ORXONOX_LITTLE_ENDIAN TRUE) | 
|---|
 | 38 | ENDIF() | 
|---|
 | 39 |  | 
|---|
 | 40 | # 32/64 bit system check | 
|---|
 | 41 | IF(CMAKE_SIZEOF_VOID_P EQUAL 8) | 
|---|
 | 42 |   SET(ORXONOX_ARCH_64 TRUE) | 
|---|
 | 43 | ELSE() | 
|---|
 | 44 |   SET(ORXONOX_ARCH_32 TRUE) | 
|---|
 | 45 | ENDIF() | 
|---|
 | 46 |  | 
|---|
 | 47 | # Platforms | 
|---|
 | 48 | SET(ORXONOX_PLATFORM_WINDOWS ${WIN32}) | 
|---|
 | 49 | SET(ORXONOX_PLATFORM_APPLE ${APPLE}) | 
|---|
 | 50 | SET(ORXONOX_PLATFORM_UNIX ${UNIX}) | 
|---|
 | 51 | IF(UNIX AND NOT APPLE) | 
|---|
 | 52 |   SET(ORXONOX_PLATFORM_LINUX TRUE) | 
|---|
 | 53 | ENDIF() | 
|---|
 | 54 |  | 
|---|
 | 55 | # Check __forceinline | 
|---|
| [2724] | 56 | IF(MSVC) | 
|---|
 | 57 |   INCLUDE(CheckCXXSourceCompiles) | 
|---|
 | 58 |   SET(_source "int main() { return 0; } __forceinline void test() { return; }") | 
|---|
 | 59 |   CHECK_CXX_SOURCE_COMPILES("${_source}" HAVE_FORCEINLINE) | 
|---|
 | 60 | ENDIF(MSVC) | 
|---|
| [2710] | 61 |  | 
|---|
 | 62 | # Check ciso646 include (literal operators) | 
|---|
 | 63 | INCLUDE(CheckIncludeFileCXX) | 
|---|
 | 64 | CHECK_INCLUDE_FILE_CXX(iso646.h HAVE_ISO646_H) | 
|---|
 | 65 |  | 
|---|
 | 66 | # XCode and Visual Studio support multiple configurations. In order to tell the | 
|---|
 | 67 | # which one we have to define the macros separately for each configuration | 
|---|
 | 68 | ADD_COMPILER_FLAGS("-DCMAKE_BUILD_TYPE=Debug"          Debug) | 
|---|
 | 69 | ADD_COMPILER_FLAGS("-DCMAKE_BUILD_TYPE=Release"        Release) | 
|---|
 | 70 | ADD_COMPILER_FLAGS("-DCMAKE_BUILD_TYPE=RelWithDebInfo" RelWithDebInfo) | 
|---|
 | 71 | ADD_COMPILER_FLAGS("-DCMAKE_BUILD_TYPE=MinSizeRel"     MinSizeRel) | 
|---|
 | 72 |  | 
|---|
 | 73 | SET(GENERATED_FILE_COMMENT | 
|---|
| [3196] | 74 |    "DO NOT EDIT THIS FILE! <br> | 
|---|
| [2710] | 75 |     It has been automatically generated by CMake from OrxonoxConfig.h.in") | 
|---|
 | 76 | # Copy and configure OrxonoxConfig which gets included in every file | 
|---|
 | 77 | CONFIGURE_FILE(OrxonoxConfig.h.in ${CMAKE_CURRENT_BINARY_DIR}/OrxonoxConfig.h) | 
|---|
 | 78 | # This file only gets included by very few classes to avoid a large recompilation | 
|---|
 | 79 | CONFIGURE_FILE(SpecialConfig.h.in ${CMAKE_CURRENT_BINARY_DIR}/SpecialConfig.h) | 
|---|
 | 80 |  | 
|---|
| [3196] | 81 | SET(ORXONOX_CONFIG_FILES | 
|---|
 | 82 |   ${CMAKE_CURRENT_BINARY_DIR}/OrxonoxConfig.h | 
|---|
 | 83 |   ${CMAKE_CURRENT_SOURCE_DIR}/OrxonoxConfig.h.in | 
|---|
 | 84 |   ${CMAKE_CURRENT_BINARY_DIR}/SpecialConfig.h | 
|---|
 | 85 |   ${CMAKE_CURRENT_SOURCE_DIR}/SpecialConfig.h.in | 
|---|
 | 86 | ) | 
|---|
| [2710] | 87 |  | 
|---|
 | 88 | ############## Include Directories ############## | 
|---|
 | 89 |  | 
|---|
 | 90 | # Set the search paths for include files | 
|---|
 | 91 | INCLUDE_DIRECTORIES( | 
|---|
 | 92 |   # External | 
|---|
 | 93 |   ${OGRE_INCLUDE_DIR} | 
|---|
 | 94 |   ${CEGUI_INCLUDE_DIR} | 
|---|
 | 95 |   ${ENET_INCLUDE_DIR} | 
|---|
 | 96 |   ${Boost_INCLUDE_DIRS} | 
|---|
 | 97 |   ${OPENAL_INCLUDE_DIRS} | 
|---|
 | 98 |   ${ALUT_INCLUDE_DIR} | 
|---|
 | 99 |   ${VORBIS_INCLUDE_DIR} | 
|---|
 | 100 |   ${OGG_INCLUDE_DIR} | 
|---|
 | 101 |   ${LUA_INCLUDE_DIR} | 
|---|
 | 102 |   ${TCL_INCLUDE_PATH} | 
|---|
 | 103 |   ${DIRECTX_INCLUDE_DIR} | 
|---|
 | 104 |   ${ZLIB_INCLUDE_DIR} | 
|---|
| [3196] | 105 |   ${VLD_INCLUDE_DIR} | 
|---|
| [2710] | 106 |  | 
|---|
 | 107 |   # All library includes are prefixed with the path to avoid conflicts | 
|---|
 | 108 |   ${CMAKE_CURRENT_SOURCE_DIR} | 
|---|
 | 109 |   # Bullet headers really need the include directory | 
|---|
 | 110 |   ${CMAKE_CURRENT_SOURCE_DIR}/bullet | 
|---|
| [3084] | 111 |   # OIS headers need the root dir as well | 
|---|
 | 112 |   ${CMAKE_CURRENT_SOURCE_DIR}/ois | 
|---|
| [2710] | 113 |   # Convenience directory | 
|---|
 | 114 |   ${CMAKE_CURRENT_SOURCE_DIR}/orxonox | 
|---|
 | 115 |   # OrxonoxConfig.h | 
|---|
 | 116 |   ${CMAKE_CURRENT_BINARY_DIR} | 
|---|
 | 117 |   # Tolua bind files for Core | 
|---|
 | 118 |   ${CMAKE_CURRENT_BINARY_DIR}/core/${CMAKE_CFG_INTDIR} | 
|---|
 | 119 |   # Tolua bind files for Orxonox | 
|---|
 | 120 |   ${CMAKE_CURRENT_BINARY_DIR}/orxonox/${CMAKE_CFG_INTDIR} | 
|---|
 | 121 | ) | 
|---|
 | 122 |  | 
|---|
 | 123 |  | 
|---|
 | 124 | ################ Sub Directories ################ | 
|---|
 | 125 |  | 
|---|
 | 126 | # Third party libraries | 
|---|
| [1505] | 127 | ADD_SUBDIRECTORY(tolua) | 
|---|
 | 128 |  | 
|---|
| [2710] | 129 | # Include CEGUILua if not requested otherwise | 
|---|
 | 130 | IF(CEGUILUA_USE_INTERNAL_LIBRARY) | 
|---|
 | 131 |   IF(NOT IS_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/ceguilua/ceguilua-${CEGUI_VERSION}) | 
|---|
 | 132 |     MESSAGE(FATAL_ERROR "CEGUILua version not found in src folder. Update list of supported versions in LibraryConfig.cmake!") | 
|---|
 | 133 |   ENDIF() | 
|---|
| [1854] | 134 |  | 
|---|
| [2710] | 135 |   INCLUDE_DIRECTORIES(ceguilua/ceguilua-${CEGUI_VERSION}) | 
|---|
 | 136 |   ADD_SUBDIRECTORY(ceguilua) | 
|---|
 | 137 | ENDIF() | 
|---|
| [1810] | 138 |  | 
|---|
| [2710] | 139 | ADD_SUBDIRECTORY(bullet) | 
|---|
 | 140 | ADD_SUBDIRECTORY(cpptcl) | 
|---|
 | 141 | ADD_SUBDIRECTORY(ogreceguirenderer) | 
|---|
 | 142 | ADD_SUBDIRECTORY(ois) | 
|---|
 | 143 | ADD_SUBDIRECTORY(tinyxml) | 
|---|
| [1810] | 144 |  | 
|---|
| [2710] | 145 | # Orxonox code | 
|---|
| [1505] | 146 | ADD_SUBDIRECTORY(util) | 
|---|
 | 147 | ADD_SUBDIRECTORY(core) | 
|---|
 | 148 | ADD_SUBDIRECTORY(network) | 
|---|
 | 149 | ADD_SUBDIRECTORY(orxonox) | 
|---|