Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/trunk/src/OrxonoxConfig.cmake @ 8351

Last change on this file since 8351 was 8351, checked in by rgrieder, 13 years ago

Merged kicklib2 branch back to trunk (includes former branches ois_update, mac_osx and kicklib).

Notes for updating

Linux:
You don't need an extra package for CEGUILua and Tolua, it's already shipped with CEGUI.
However you do need to make sure that the OgreRenderer is installed too with CEGUI 0.7 (may be a separate package).
Also, Orxonox now recognises if you install the CgProgramManager (a separate package available on newer Ubuntu on Debian systems).

Windows:
Download the new dependency packages versioned 6.0 and use these. If you have problems with that or if you don't like the in game console problem mentioned below, you can download the new 4.3 version of the packages (only available for Visual Studio 2005/2008).

Key new features:

  • *Support for Mac OS X*
  • Visual Studio 2010 support
  • Bullet library update to 2.77
  • OIS library update to 1.3
  • Support for CEGUI 0.7 —> Support for Arch Linux and even SuSE
  • Improved install target
  • Compiles now with GCC 4.6
  • Ogre Cg Shader plugin activated for Linux if available
  • And of course lots of bug fixes

There are also some regressions:

  • No support for CEGUI 0.5, Ogre 1.4 and boost 1.35 - 1.39 any more
  • In game console is not working in main menu for CEGUI 0.7
  • Tolua (just the C lib, not the application) and CEGUILua libraries are no longer in our repository. —> You will need to get these as well when compiling Orxonox
  • And of course lots of new bugs we don't yet know about
  • Property svn:eol-style set to native
File size: 3.8 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 the header files OrxonoxConfig.h and SpecialConfig.h
24 #    and sets some other options. All the build related options should be
25 #    found and set here if possible.
26 #
27
28#################### Options ####################
29
30# Global switch to disable Precompiled Header Files
31# Note: PCH temporarily disabled on Mac because of severe problems
32IF(PCH_COMPILER_SUPPORT AND NOT APPLE)
33  OPTION(PCH_ENABLE "Global PCH switch" TRUE)
34ENDIF()
35
36# Global switch to disable multiple file compilations
37OPTION(DISABLE_COMPILATIONS "Global multi-file compilation switch" FALSE)
38
39# Use WinMain() or main()?
40IF(WIN32)
41  OPTION(ORXONOX_USE_WINMAIN "Use WinMain (doesn't show console) or main" FALSE)
42ENDIF()
43
44################ Platform Config ################
45
46# Check endianness
47INCLUDE(TestBigEndian)
48TEST_BIG_ENDIAN(ORXONOX_BIG_ENDIAN)
49IF(NOT ORXONOX_BIG_ENDIAN)
50  SET(ORXONOX_LITTLE_ENDIAN TRUE)
51ENDIF()
52
53# Platforms
54SET(ORXONOX_PLATFORM_WINDOWS ${WIN32})
55SET(ORXONOX_PLATFORM_APPLE   ${APPLE})
56SET(ORXONOX_PLATFORM_UNIX    ${UNIX})
57SET(ORXONOX_PLATFORM_LINUX   ${LINUX})
58
59# Check __forceinline
60IF(MSVC)
61  INCLUDE(CheckCXXSourceCompiles)
62  SET(_source "int main() { return 0; } __forceinline void test() { return; }")
63  CHECK_CXX_SOURCE_COMPILES("${_source}" HAVE_FORCEINLINE)
64ENDIF(MSVC)
65
66# Check some non standard system includes
67INCLUDE(CheckIncludeFileCXX)
68CHECK_INCLUDE_FILE_CXX(iso646.h HAVE_ISO646_H)
69CHECK_INCLUDE_FILE_CXX(stdint.h HAVE_STDINT_H)
70
71# Part of a woraround for OS X warnings. See OrxonoxConfig.h.in
72SET(ORX_HAVE_STDINT_H ${HAVE_STDINT_H})
73
74IF(MSVC)
75  # Check whether we can use Visual Leak Detector
76  FIND_FILE(VLD_DLL vld_x86.dll)
77  IF(VLD_DLL)
78    SET(HAVE_VLD TRUE)
79    OPTION(VISUAL_LEAK_DETECTOR_ENABLE "Memory leak detector" off)
80    # Make sure the value is "on" or "off" for vld.ini
81    IF(VISUAL_LEAK_DETECTOR_ENABLE)
82      SET(VISUAL_LEAK_DETECTOR_ENABLE on)
83    ELSE()
84      SET(VISUAL_LEAK_DETECTOR_ENABLE off)
85    ENDIF()
86  ENDIF()
87  MARK_AS_ADVANCED(VLD_DLL)
88ENDIF()
89
90############## Configured Headers ###############
91
92SET(GENERATED_FILE_COMMENT
93   "DO NOT EDIT THIS FILE! <br>
94    It has been automatically generated by CMake from OrxonoxConfig.h.in")
95# Copy and configure OrxonoxConfig which gets included in every file
96CONFIGURE_FILE(OrxonoxConfig.h.in ${CMAKE_CURRENT_BINARY_DIR}/OrxonoxConfig.h)
97# This file only gets included by very few classes to avoid a large recompilation
98CONFIGURE_FILE(SpecialConfig.h.in ${CMAKE_CURRENT_BINARY_DIR}/SpecialConfig.h)
99
100SET(ORXONOX_CONFIG_FILES
101  ${CMAKE_CURRENT_SOURCE_DIR}/OrxonoxConfig.h.in
102  ${CMAKE_CURRENT_SOURCE_DIR}/SpecialConfig.h.in
103)
104SET(ORXONOX_CONFIG_FILES_GENERATED
105  ${CMAKE_CURRENT_BINARY_DIR}/OrxonoxConfig.h
106  ${CMAKE_CURRENT_BINARY_DIR}/SpecialConfig.h
107)
108
109# Make special target including the configured header files for Visual Studio
110IF(MSVC)
111  ADD_CUSTOM_TARGET(config
112    SOURCES
113      ${ORXONOX_CONFIG_FILES}
114      ${ORXONOX_CONFIG_FILES_GENERATED}
115  )
116ENDIF()
Note: See TracBrowser for help on using the repository browser.