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