| 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 some basics and controls the configuration scripts | 
|---|
| 24 | # | 
|---|
| 25 |  | 
|---|
| 26 | # Defined LINUX | 
|---|
| 27 | IF(UNIX AND NOT APPLE) | 
|---|
| 28 | SET(LINUX TRUE) | 
|---|
| 29 | ENDIF() | 
|---|
| 30 |  | 
|---|
| 31 | # Keep devs from using the root directory as binary directory (messes up the source tree) | 
|---|
| 32 | IF(${CMAKE_CURRENT_SOURCE_DIR} STREQUAL ${CMAKE_CURRENT_BINARY_DIR}) | 
|---|
| 33 | MESSAGE(FATAL_ERROR "Please do not use the root directory as CMake output directory! | 
|---|
| 34 | mkdir build; cd build; cmake .. | 
|---|
| 35 | And you will have to clean the source directory by deleting CMakeCache.txt and the folder CMakeFiles") | 
|---|
| 36 | ENDIF() | 
|---|
| 37 |  | 
|---|
| 38 | PROJECT(Orxonox C CXX) | 
|---|
| 39 |  | 
|---|
| 40 | # Check AFTER the PROJECT command because MSVC10 gets defined there | 
|---|
| 41 | IF(WIN32) | 
|---|
| 42 | IF(MSVC10) | 
|---|
| 43 | CMAKE_MINIMUM_REQUIRED(VERSION 2.8.3 FATAL_ERROR) | 
|---|
| 44 | ELSE() | 
|---|
| 45 | CMAKE_MINIMUM_REQUIRED(VERSION 2.6.3 FATAL_ERROR) | 
|---|
| 46 | ENDIF() | 
|---|
| 47 | ELSE() | 
|---|
| 48 | CMAKE_MINIMUM_REQUIRED(VERSION 2.6 FATAL_ERROR) | 
|---|
| 49 | ENDIF() | 
|---|
| 50 |  | 
|---|
| 51 | ################ General Config ################# | 
|---|
| 52 |  | 
|---|
| 53 | # Version info | 
|---|
| 54 | SET(ORXONOX_VERSION_MAJOR 0) | 
|---|
| 55 | SET(ORXONOX_VERSION_MINOR 0) | 
|---|
| 56 | SET(ORXONOX_VERSION_PATCH 5) | 
|---|
| 57 | SET(ORXONOX_VERSION | 
|---|
| 58 | ${ORXONOX_VERSION_MAJOR}.${ORXONOX_VERSION_MINOR}.${ORXONOX_VERSION_PATCH} | 
|---|
| 59 | ) | 
|---|
| 60 | SET(ORXONOX_VERSION_NAME "Arcturus") | 
|---|
| 61 |  | 
|---|
| 62 | # Standard path suffixes | 
|---|
| 63 | SET(DEFAULT_RUNTIME_PATH bin) | 
|---|
| 64 | SET(DEFAULT_LIBRARY_PATH lib) | 
|---|
| 65 | SET(DEFAULT_ARCHIVE_PATH lib/static) | 
|---|
| 66 | SET(DEFAULT_MODULE_PATH  lib/modules) | 
|---|
| 67 | SET(DEFAULT_DOC_PATH     doc) | 
|---|
| 68 | SET(DEFAULT_DATA_PATH    data) | 
|---|
| 69 | SET(DEFAULT_CONFIG_PATH  config) | 
|---|
| 70 | SET(DEFAULT_LOG_PATH     log) | 
|---|
| 71 | SET(DEFAULT_BUNDLE_PATH  bundle) | 
|---|
| 72 |  | 
|---|
| 73 | # Set output directories | 
|---|
| 74 | SET(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/${DEFAULT_RUNTIME_PATH}) | 
|---|
| 75 | SET(CMAKE_LIBRARY_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/${DEFAULT_LIBRARY_PATH}) | 
|---|
| 76 | SET(CMAKE_ARCHIVE_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/${DEFAULT_ARCHIVE_PATH}) | 
|---|
| 77 | SET(CMAKE_MODULE_OUTPUT_DIRECTORY  ${CMAKE_BINARY_DIR}/${DEFAULT_MODULE_PATH}) | 
|---|
| 78 | SET(CMAKE_DOC_OUTPUT_DIRECTORY     ${CMAKE_BINARY_DIR}/${DEFAULT_DOC_PATH}) | 
|---|
| 79 | # Data directories are only inputs, no delclaration here | 
|---|
| 80 | SET(CMAKE_CONFIG_OUTPUT_DIRECTORY  ${CMAKE_BINARY_DIR}/${DEFAULT_CONFIG_PATH}) | 
|---|
| 81 | SET(CMAKE_LOG_OUTPUT_DIRECTORY     ${CMAKE_BINARY_DIR}/${DEFAULT_LOG_PATH}) | 
|---|
| 82 |  | 
|---|
| 83 | # Set the extension of the dynamic modules | 
|---|
| 84 | SET(ORXONOX_MODULE_EXTENSION ".module") | 
|---|
| 85 |  | 
|---|
| 86 | # Sets where to find the external libraries like OgreMain.dll at runtime | 
|---|
| 87 | # On Unix you should not have to change this at all. | 
|---|
| 88 | # This only applies to development runs in the build tree | 
|---|
| 89 | SET(RUNTIME_LIBRARY_DIRECTORY ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}) | 
|---|
| 90 |  | 
|---|
| 91 | # Take care of some CMake 2.6.0 leftovers | 
|---|
| 92 | MARK_AS_ADVANCED(EXECUTABLE_OUTPUT_PATH LIBRARY_OUTPUT_PATH) | 
|---|
| 93 |  | 
|---|
| 94 | # This sets where to look for CMake modules (e.g. "Find*.cmake" files) | 
|---|
| 95 | SET(CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR}/cmake ${CMAKE_SOURCE_DIR}/cmake/tools) | 
|---|
| 96 |  | 
|---|
| 97 | # Flag variables for extra configuration "RelForDevs" should be hidden | 
|---|
| 98 | MARK_AS_ADVANCED( | 
|---|
| 99 | CMAKE_CXX_FLAGS_RELFORDEVS | 
|---|
| 100 | CMAKE_C_FLAGS_RELFORDEVS | 
|---|
| 101 | CMAKE_EXE_LINKER_FLAGS_RELFORDEVS | 
|---|
| 102 | CMAKE_MODULE_LINKER_FLAGS_RELFORDEVS | 
|---|
| 103 | CMAKE_SHARED_LINKER_FLAGS_RELFORDEVS | 
|---|
| 104 | ) | 
|---|
| 105 |  | 
|---|
| 106 | IF(NOT CMAKE_CONFIGURATION_TYPES) | 
|---|
| 107 | # Set Debug build to default when not having multi-config generator like MSVC or XCODE | 
|---|
| 108 | IF(NOT CMAKE_BUILD_TYPE) | 
|---|
| 109 | SET(CMAKE_BUILD_TYPE Debug CACHE STRING | 
|---|
| 110 | "Build types are: Debug, RelForDevs, RelWithDebInfo, Release, MinSizeRel" FORCE) | 
|---|
| 111 | ENDIF() | 
|---|
| 112 | MARK_AS_ADVANCED(CLEAR CMAKE_BUILD_TYPE) | 
|---|
| 113 |  | 
|---|
| 114 | MESSAGE(STATUS "*** Build type is ${CMAKE_BUILD_TYPE} ***") | 
|---|
| 115 | ELSE() | 
|---|
| 116 | # Make sure no build type is ever set | 
|---|
| 117 | IF(CMAKE_BUILD_TYPE) | 
|---|
| 118 | SET(CMAKE_BUILD_TYPE CACHE STRING FORCE) | 
|---|
| 119 | ENDIF() | 
|---|
| 120 | MARK_AS_ADVANCED(FORCE CMAKE_BUILD_TYPE) | 
|---|
| 121 | # Add our extra configuration "RelForDevs" | 
|---|
| 122 | SET(CMAKE_CONFIGURATION_TYPES "Debug;RelForDevs;RelWithDebInfo;Release;MinSizeRel" | 
|---|
| 123 | CACHE STRING "Semicolon separated list of supported configuration types." FORCE) | 
|---|
| 124 | ENDIF() | 
|---|
| 125 |  | 
|---|
| 126 | # Debug builds can not be installed | 
|---|
| 127 | INSTALL(SCRIPT cmake/InstallCheck.cmake) | 
|---|
| 128 |  | 
|---|
| 129 | IF(APPLE) | 
|---|
| 130 | # Set 10.5 as the base SDK by default | 
|---|
| 131 | SET(XCODE_ATTRIBUTE_SDKROOT macosx10.5) | 
|---|
| 132 |  | 
|---|
| 133 | # 10.6 sets x86_64 as the default architecture. | 
|---|
| 134 | # Because Carbon isn't supported on 64-bit and we still need it, force the architectures to ppc and i386 | 
|---|
| 135 | IF(CMAKE_OSX_ARCHITECTURES MATCHES "x86_64") | 
|---|
| 136 | SET(CMAKE_OSX_ARCHITECTURES "i386") | 
|---|
| 137 | ENDIF() | 
|---|
| 138 | IF(CMAKE_OSX_ARCHITECTURES MATCHES "ppc64") | 
|---|
| 139 | SET(CMAKE_OSX_ARCHITECTURES "ppc") | 
|---|
| 140 | ENDIF() | 
|---|
| 141 | IF(NOT CMAKE_OSX_ARCHITECTURES) | 
|---|
| 142 | SET(CMAKE_OSX_ARCHITECTURES "i386") | 
|---|
| 143 | ENDIF() | 
|---|
| 144 | ENDIF() | 
|---|
| 145 |  | 
|---|
| 146 | ########### Subfolders and Subscripts ########### | 
|---|
| 147 |  | 
|---|
| 148 | # General build and compiler options and configurations | 
|---|
| 149 | INCLUDE(CompilerConfig) | 
|---|
| 150 |  | 
|---|
| 151 | # Library finding | 
|---|
| 152 | INCLUDE(LibraryConfig) | 
|---|
| 153 |  | 
|---|
| 154 | # Configure installation paths and options | 
|---|
| 155 | INCLUDE(InstallConfig) | 
|---|
| 156 |  | 
|---|
| 157 | # Configure data directory location and installation | 
|---|
| 158 | ADD_SUBDIRECTORY(data) | 
|---|
| 159 |  | 
|---|
| 160 | # Create the actual project | 
|---|
| 161 | ADD_SUBDIRECTORY(src) | 
|---|
| 162 |  | 
|---|
| 163 | # Configure the binary output directory. Do this after src! | 
|---|
| 164 | ADD_SUBDIRECTORY(bin) | 
|---|
| 165 |  | 
|---|
| 166 | # System specific files (mostly for installation) | 
|---|
| 167 | ADD_SUBDIRECTORY(contrib) | 
|---|
| 168 |  | 
|---|
| 169 | # Last but not least: Try to make a doc target with Doxygen | 
|---|
| 170 | ADD_SUBDIRECTORY(doc) | 
|---|
| 171 |  | 
|---|
| 172 | ########### CPack Packaging ########### | 
|---|
| 173 |  | 
|---|
| 174 | # Currently only testing on Apple | 
|---|
| 175 | #IF(APPLE) | 
|---|
| 176 | #  INCLUDE(BundleConfig) | 
|---|
| 177 | #ENDIF(APPLE) | 
|---|