| [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 |  # | 
|---|
| [5664] | 19 |  # | 
|---|
 | 20 |  #  Author: | 
|---|
 | 21 |  #    Reto Grieder | 
|---|
 | 22 |  #  Description: | 
|---|
 | 23 |  #    Configures some basics and controls the configuration scripts | 
|---|
 | 24 |  # | 
|---|
 | 25 |  | 
|---|
| [2710] | 26 | CMAKE_MINIMUM_REQUIRED(VERSION 2.6 FATAL_ERROR) | 
|---|
| [1505] | 27 |  | 
|---|
| [2710] | 28 | # Keep devs from using the root directory as binary directory (messes up the source tree) | 
|---|
 | 29 | IF(${CMAKE_CURRENT_SOURCE_DIR} STREQUAL ${CMAKE_CURRENT_BINARY_DIR}) | 
|---|
 | 30 |   MESSAGE(FATAL_ERROR "Please do not use the root directory as CMake output directory! | 
|---|
 | 31 |   mkdir build; cd build; cmake .. | 
|---|
 | 32 |   And you will have to clean the source directory by deleting CMakeCache.txt and the folder CMakeFiles") | 
|---|
 | 33 | ENDIF() | 
|---|
| [1505] | 34 |  | 
|---|
| [2710] | 35 | PROJECT(Orxonox C CXX) | 
|---|
| [1872] | 36 |  | 
|---|
| [5664] | 37 | ################ General Config ################# | 
|---|
 | 38 |  | 
|---|
 | 39 | # Version info | 
|---|
| [2710] | 40 | SET(ORXONOX_VERSION_MAJOR 0) | 
|---|
 | 41 | SET(ORXONOX_VERSION_MINOR 0) | 
|---|
| [3316] | 42 | SET(ORXONOX_VERSION_PATCH 3) | 
|---|
 | 43 | SET(ORXONOX_VERSION 0.0.3) | 
|---|
| [2718] | 44 | SET(ORXONOX_VERSION_NAME "Arcturus") | 
|---|
| [1505] | 45 |  | 
|---|
| [5664] | 46 | # Standard path suffixes | 
|---|
 | 47 | SET(DEFAULT_RUNTIME_PATH bin) | 
|---|
 | 48 | SET(DEFAULT_LIBRARY_PATH lib) | 
|---|
 | 49 | SET(DEFAULT_ARCHIVE_PATH lib/static) | 
|---|
 | 50 | SET(DEFAULT_DOC_PATH     doc) | 
|---|
 | 51 | SET(DEFAULT_DATA_PATH    data) | 
|---|
 | 52 | SET(DEFAULT_CONFIG_PATH  config) | 
|---|
 | 53 | SET(DEFAULT_LOG_PATH     log) | 
|---|
| [1505] | 54 |  | 
|---|
| [5664] | 55 | # Set output directories | 
|---|
 | 56 | SET(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/${DEFAULT_RUNTIME_PATH}) | 
|---|
 | 57 | SET(CMAKE_LIBRARY_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/${DEFAULT_LIBRARY_PATH}) | 
|---|
 | 58 | SET(CMAKE_ARCHIVE_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/${DEFAULT_ARCHIVE_PATH}) | 
|---|
 | 59 | SET(CMAKE_DOC_OUTPUT_DIRECTORY     ${CMAKE_BINARY_DIR}/${DEFAULT_DOC_PATH}) | 
|---|
 | 60 | # Data directories are only inputs, no delclaration here | 
|---|
 | 61 | SET(CMAKE_CONFIG_OUTPUT_DIRECTORY  ${CMAKE_BINARY_DIR}/${DEFAULT_CONFIG_PATH}) | 
|---|
 | 62 | SET(CMAKE_LOG_OUTPUT_DIRECTORY     ${CMAKE_BINARY_DIR}/${DEFAULT_LOG_PATH}) | 
|---|
 | 63 |  | 
|---|
 | 64 | # Sets where to find the external libraries like OgreMain.dll at runtime | 
|---|
 | 65 | # On Unix you should not have to change this at all. | 
|---|
 | 66 | # This only applies to development runs in the build tree | 
|---|
 | 67 | SET(RUNTIME_LIBRARY_DIRECTORY ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}) | 
|---|
 | 68 |  | 
|---|
 | 69 | # Take care of some CMake 2.6.0 leftovers | 
|---|
 | 70 | MARK_AS_ADVANCED(EXECUTABLE_OUTPUT_PATH LIBRARY_OUTPUT_PATH) | 
|---|
 | 71 |  | 
|---|
 | 72 | # This sets where to look for CMake modules (e.g. "Find*.cmake" files) | 
|---|
| [2710] | 73 | SET(CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR}/cmake) | 
|---|
| [1505] | 74 |  | 
|---|
| [5664] | 75 | # Set Debug build to default when not having multi-config generator like msvc | 
|---|
 | 76 | IF(NOT CMAKE_CONFIGURATION_TYPES) | 
|---|
 | 77 |   IF(NOT CMAKE_BUILD_TYPE) | 
|---|
 | 78 |     SET(CMAKE_BUILD_TYPE Debug CACHE STRING | 
|---|
 | 79 |         "Build types are: Debug, Release, MinSizeRel, RelWithDebInfo" FORCE) | 
|---|
 | 80 |   ENDIF() | 
|---|
 | 81 |   MARK_AS_ADVANCED(CLEAR CMAKE_BUILD_TYPE) | 
|---|
 | 82 |  | 
|---|
 | 83 |   MESSAGE(STATUS "*** Build type is ${CMAKE_BUILD_TYPE} ***") | 
|---|
 | 84 | ELSE() | 
|---|
 | 85 |   IF(CMAKE_BUILD_TYPE) | 
|---|
 | 86 |     SET(CMAKE_BUILD_TYPE CACHE STRING FORCE) | 
|---|
 | 87 |   ENDIF() | 
|---|
 | 88 |   MARK_AS_ADVANCED(CMAKE_BUILD_TYPE) | 
|---|
 | 89 | ENDIF() | 
|---|
 | 90 |  | 
|---|
| [5691] | 91 | # Enable expensive optimisations: use this for a binary release build | 
|---|
 | 92 | OPTION(ORXONOX_RELEASE "Enable when building restributable releases" FALSE) | 
|---|
 | 93 |  | 
|---|
| [5664] | 94 | ########### Subfolders and Subscripts ########### | 
|---|
 | 95 |  | 
|---|
| [2710] | 96 | # Library finding | 
|---|
 | 97 | INCLUDE(LibraryConfig) | 
|---|
| [1505] | 98 |  | 
|---|
| [2710] | 99 | # General build and compiler options and configurations | 
|---|
| [5664] | 100 | INCLUDE(CompilerConfig) | 
|---|
| [1505] | 101 |  | 
|---|
| [5664] | 102 | # Configure installation paths and options | 
|---|
 | 103 | INCLUDE(InstallConfig) | 
|---|
 | 104 |  | 
|---|
| [5645] | 105 | # Configure data directory location and installation | 
|---|
 | 106 | ADD_SUBDIRECTORY(data) | 
|---|
| [1505] | 107 |  | 
|---|
| [2710] | 108 | # Create the actual project | 
|---|
 | 109 | ADD_SUBDIRECTORY(src) | 
|---|
| [1505] | 110 |  | 
|---|
| [2710] | 111 | # Configure the binary output directory. Do this after src! | 
|---|
 | 112 | ADD_SUBDIRECTORY(bin) | 
|---|
| [1505] | 113 |  | 
|---|
| [5664] | 114 | # Last but not least: Try to make a doc target with Doxygen | 
|---|
| [2710] | 115 | ADD_SUBDIRECTORY(doc) | 
|---|