Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Jun 20, 2009, 9:20:47 AM (15 years ago)
Author:
rgrieder
Message:

Merged pch branch back to trunk.

Location:
code/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • code/trunk

  • code/trunk/src/OrxonoxConfig.h.in

    r2946 r3196  
    3434
    3535/**
    36  @file
    37  @brief
     36@file
     37@brief
    3838    Various constants for compiler, architecture and platform.
    39 
     39@remarks
    4040    @GENERATED_FILE_COMMENT@
    41  */
     41*/
    4242
    4343#ifndef _OrxonoxConfig_H__
     
    5252#cmakedefine ORXONOX_PLATFORM_UNIX /* Apple and Linux */
    5353
    54 /* Determine compiler and set ORXONOX_COMP_VER */
     54// Determine compiler and set ORXONOX_COMP_VER
    5555#if defined( _MSC_VER )
    5656#  define ORXONOX_COMPILER_MSVC
     
    7575#endif
    7676
    77 /* Endianness */
     77// Endianness
    7878#cmakedefine ORXONOX_BIG_ENDIAN
    7979#cmakedefine ORXONOX_LITTLE_ENDIAN
    8080
    81 /* Architecture */
     81// Architecture
    8282#cmakedefine ORXONOX_ARCH_32
    8383#cmakedefine ORXONOX_ARCH_64
    8484
    85 /* See if we can use __forceinline or if we need to use __inline instead */
     85// See if we can use __forceinline or if we need to use __inline instead
    8686#cmakedefine HAVE_FORCEINLINE
    8787#ifndef FORCEINLINE
     
    9393#endif
    9494
    95 /* Try to define function information */
     95// Try to define function information
    9696#ifndef __FUNCTIONNAME__
    9797#  ifdef ORXONOX_COMPILER_BORLAND
     
    115115#define ORXONOX_VERSION_NAME "@ORXONOX_VERSION_NAME@"
    116116
    117 #define ORXONOX_VERSION ((ORXONOX_VERSION_MAJOR << 16) | (ORXONOX_VERSION_MINOR << 8) | ORXONOX_VERSION_PATCH)
     117//! Defines version info encoded as 0xMMIIPP (M: Major version, I: Minor version, P: Patch version, all as hex)
     118#define ORXONOX_VERSION \
     119    ((ORXONOX_VERSION_MAJOR << 16) | (ORXONOX_VERSION_MINOR << 8) | ORXONOX_VERSION_PATCH)
    118120
    119121
     
    123125#ifdef ORXONOX_PLATFORM_UNIX
    124126
    125 /* TODO: Check what this actually is and whether we need it or not */
     127// TODO: Check what this actually is and whether we need it or not
    126128#if 0
    127129#  ifdef ORXONOX_PLATFORM_APPLE
    128130#    define ORXONOX_PLATFORM_LIB "OrxonoxPlatform.bundle"
    129 #  else
    130 /* ORXONOX_PLATFORM_LINUX */
     131#  else // ORXONOX_PLATFORM_LINUX
    131132#    define ORXONOX_PLATFORM_LIB "libOrxonoxPlatform.so"
    132133#  endif
     
    142143
    143144/*---------------------------------
    144  * Special Macros
    145  *-------------------------------*/
    146 #define MACRO_CONCATENATE_AUX(a, b) a##b
    147 #define MACRO_CONCATENATE(a, b) MACRO_CONCATENATE_AUX(a, b)
    148 #define MACRO_QUOTEME_AUX(x) #x
    149 #define MACRO_QUOTEME(x) MACRO_QUOTEME_AUX(x)
    150 
    151 
    152 /*---------------------------------
    153  * Includes
    154  *-------------------------------*/
    155 /* Define the english written operators like and, or, xor
    156  * This is C++ standard, but the Microsoft compiler doesn't define them. */
     145 * Options
     146 *-------------------------------*/
     147/**
     148@def ORXONOX_RELEASE
     149    Enables expensive (build time) optimisations and disables certain features
     150*/
     151#cmakedefine ORXONOX_RELEASE
     152
     153
     154/*---------------------------------
     155 * Includes and Declarations
     156 *-------------------------------*/
     157// Define the english written operators like and, or, xor
     158// This is C++ standard, but the Microsoft compiler doesn't define them.
    157159#cmakedefine HAVE_ISO646_H
    158160#ifdef HAVE_ISO646_H
     
    181183*/
    182184
    183 /* Visual Leak Detector looks for memory leaks */
    184 #cmakedefine VISUAL_LEAK_DETECTOR_ENABLE
    185 #ifdef VISUAL_LEAK_DETECTOR_ENABLE
     185// Always include the memory leak detector for MSVC except for actual releases
     186// Note: Although officially supported, VLD does not work with MSVC 9
     187#if defined(ORXONOX_COMPILER_MSVC) && _MSC_VER < 1500 && !defined(ORXONOX_RELEASE)
    186188#  include <vld.h>
    187189#endif
    188190
     191// Forward declare the everywhere used std::string
     192namespace std
     193{
     194    template<class _Elem> struct char_traits;
     195    template<class _Ty>   class  allocator;
     196    template<class _Elem, class _Traits, class _Ax> class basic_string;
     197    typedef basic_string<char, char_traits<char>, allocator<char> > string;
     198}
     199
    189200#endif /* _OrxonoxConfig_H__ */
Note: See TracChangeset for help on using the changeset viewer.