Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Sep 26, 2009, 12:44:49 AM (16 years ago)
Author:
rgrieder
Message:

Stripped sandbox further down to get a light version that excludes almost all core features.
Also, the Ogre dependency has been removed and a little ogremath library been added.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sandbox_light/src/OrxonoxConfig.h.in

    r5695 r5789  
    108108
    109109/*---------------------------------
    110  * Version information
    111  *-------------------------------*/
    112 #define ORXONOX_VERSION_MAJOR @ORXONOX_VERSION_MAJOR@
    113 #define ORXONOX_VERSION_MINOR @ORXONOX_VERSION_MINOR@
    114 #define ORXONOX_VERSION_PATCH @ORXONOX_VERSION_PATCH@
    115 #define ORXONOX_VERSION_NAME "@ORXONOX_VERSION_NAME@"
    116 
    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)
    120 
    121 
    122 /*---------------------------------
    123  * Unix settings
    124  *-------------------------------*/
    125 #ifdef ORXONOX_PLATFORM_UNIX
    126 
    127 // TODO: Check what this actually is and whether we need it or not
    128 #if 0
    129 #  ifdef ORXONOX_PLATFORM_APPLE
    130 #    define ORXONOX_PLATFORM_LIB "OrxonoxPlatform.bundle"
    131 #  else // ORXONOX_PLATFORM_LINUX
    132 #    define ORXONOX_PLATFORM_LIB "libOrxonoxPlatform.so"
    133 #  endif
    134 #endif
    135 
    136 #endif /* Patform Unix */
    137 
    138 
    139 /*---------------------------------
    140  * Apple Settings
    141  *-------------------------------*/
    142 
    143 
    144 /*---------------------------------
    145110 * Options
    146111 *-------------------------------*/
Note: See TracChangeset for help on using the changeset viewer.