Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/ois_update/CMakeLists.txt @ 7530

Last change on this file since 7530 was 7530, checked in by rgrieder, 14 years ago

Hope this fixes some more OS X problems.

  • Property svn:eol-style set to native
File size: 4.9 KB
Line 
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
26IF(WIN32)
27  CMAKE_MINIMUM_REQUIRED(VERSION 2.6.3 FATAL_ERROR)
28ELSE()
29  CMAKE_MINIMUM_REQUIRED(VERSION 2.6   FATAL_ERROR)
30ENDIF()
31
32# Keep devs from using the root directory as binary directory (messes up the source tree)
33IF(${CMAKE_CURRENT_SOURCE_DIR} STREQUAL ${CMAKE_CURRENT_BINARY_DIR})
34  MESSAGE(FATAL_ERROR "Please do not use the root directory as CMake output directory!
35  mkdir build; cd build; cmake ..
36  And you will have to clean the source directory by deleting CMakeCache.txt and the folder CMakeFiles")
37ENDIF()
38
39PROJECT(Orxonox C CXX)
40
41################ General Config #################
42
43# Version info
44SET(ORXONOX_VERSION_MAJOR 0)
45SET(ORXONOX_VERSION_MINOR 0)
46SET(ORXONOX_VERSION_PATCH 4)
47SET(ORXONOX_VERSION 0.0.4)
48SET(ORXONOX_VERSION_NAME "Arcturus")
49
50# Standard path suffixes
51SET(DEFAULT_RUNTIME_PATH bin)
52SET(DEFAULT_LIBRARY_PATH lib)
53SET(DEFAULT_ARCHIVE_PATH lib/static)
54SET(DEFAULT_MODULE_PATH  lib/modules)
55SET(DEFAULT_DOC_PATH     doc)
56SET(DEFAULT_DATA_PATH    data)
57SET(DEFAULT_CONFIG_PATH  config)
58SET(DEFAULT_LOG_PATH     log)
59
60# Set output directories
61SET(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/${DEFAULT_RUNTIME_PATH})
62SET(CMAKE_LIBRARY_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/${DEFAULT_LIBRARY_PATH})
63SET(CMAKE_ARCHIVE_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/${DEFAULT_ARCHIVE_PATH})
64SET(CMAKE_MODULE_OUTPUT_DIRECTORY  ${CMAKE_BINARY_DIR}/${DEFAULT_MODULE_PATH})
65SET(CMAKE_DOC_OUTPUT_DIRECTORY     ${CMAKE_BINARY_DIR}/${DEFAULT_DOC_PATH})
66# Data directories are only inputs, no delclaration here
67SET(CMAKE_CONFIG_OUTPUT_DIRECTORY  ${CMAKE_BINARY_DIR}/${DEFAULT_CONFIG_PATH})
68SET(CMAKE_LOG_OUTPUT_DIRECTORY     ${CMAKE_BINARY_DIR}/${DEFAULT_LOG_PATH})
69
70# Set the extension of the dynamic modules
71SET(ORXONOX_MODULE_EXTENSION ".module")
72
73# Sets where to find the external libraries like OgreMain.dll at runtime
74# On Unix you should not have to change this at all.
75# This only applies to development runs in the build tree
76SET(RUNTIME_LIBRARY_DIRECTORY ${CMAKE_RUNTIME_OUTPUT_DIRECTORY})
77
78# Take care of some CMake 2.6.0 leftovers
79MARK_AS_ADVANCED(EXECUTABLE_OUTPUT_PATH LIBRARY_OUTPUT_PATH)
80
81# This sets where to look for CMake modules (e.g. "Find*.cmake" files)
82SET(CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR}/cmake ${CMAKE_SOURCE_DIR}/cmake/tools)
83
84# Set Debug build to default when not having multi-config generator like msvc
85IF(NOT CMAKE_CONFIGURATION_TYPES)
86  IF(NOT CMAKE_BUILD_TYPE)
87    SET(CMAKE_BUILD_TYPE Debug CACHE STRING
88        "Build types are: Debug, Release, MinSizeRel, RelWithDebInfo" FORCE)
89  ENDIF()
90  MARK_AS_ADVANCED(CLEAR CMAKE_BUILD_TYPE)
91
92  MESSAGE(STATUS "*** Build type is ${CMAKE_BUILD_TYPE} ***")
93ELSE()
94  IF(CMAKE_BUILD_TYPE)
95    SET(CMAKE_BUILD_TYPE CACHE STRING FORCE)
96  ENDIF()
97  MARK_AS_ADVANCED(CMAKE_BUILD_TYPE)
98ENDIF()
99
100# Enable expensive optimisations: use this for a binary release build
101OPTION(ORXONOX_RELEASE "Enable when building restributable releases" FALSE)
102
103IF(APPLE)
104  # Set 10.5 as the base SDK by default
105  SET(XCODE_ATTRIBUTE_SDKROOT macosx10.5)
106
107  # 10.6 sets x86_64 as the default architecture.
108  # Because Carbon isn't supported on 64-bit and we still need it, force the architectures to ppc and i386
109  IF(CMAKE_OSX_ARCHITECTURES MATCHES "x86_64")
110    SET(CMAKE_OSX_ARCHITECTURES "i386")
111  ENDIF()
112  IF(CMAKE_OSX_ARCHITECTURES MATCHES "ppc64")
113    SET(CMAKE_OSX_ARCHITECTURES "ppc")
114  ENDIF()
115  IF(NOT CMAKE_OSX_ARCHITECTURES)
116    SET(CMAKE_OSX_ARCHITECTURES "i386")
117  ENDIF()
118ENDIF()
119
120########### Subfolders and Subscripts ###########
121
122# General build and compiler options and configurations
123INCLUDE(CompilerConfig)
124
125# Library finding
126INCLUDE(LibraryConfig)
127
128# Configure installation paths and options
129INCLUDE(InstallConfig)
130
131# Configure data directory location and installation
132ADD_SUBDIRECTORY(data)
133
134# Create the actual project
135ADD_SUBDIRECTORY(src)
136
137# Configure the binary output directory. Do this after src!
138ADD_SUBDIRECTORY(bin)
139
140# Last but not least: Try to make a doc target with Doxygen
141ADD_SUBDIRECTORY(doc)
Note: See TracBrowser for help on using the repository browser.