Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Sep 24, 2009, 11:02:42 AM (15 years ago)
Author:
rgrieder
Message:

Reverted trunk again. We might want to find a way to delete these revisions again (x3n's changes are still available as diff in the commit mails).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/trunk/src/SpecialConfig.h.in

    r5774 r5781  
    4444
    4545/**
     46@def CEGUILUA_USE_INTERNAL_LIBRARY
     47    Set whether we must suffix "ceguilua/" for the CEGUILua.h include
     48*/
     49#cmakedefine CEGUILUA_USE_INTERNAL_LIBRARY
     50
     51/**
    4652@def DEPENDENCY_PACKAGE_ENABLE
    4753    Defined if a precompiled depdency package was used. We then copy all libraries
     
    8490    // DEVELOPMENT RUN PATHS
    8591    const char dataDevDirectory[]           = "@DATA_DIRECTORY@";
     92    const char externalDataDevDirectory[]   = "@EXTERNAL_DATA_DIRECTORY@";
    8693#ifdef CMAKE_CONFIGURATION_TYPES
    8794    const char moduleDevDirectory[]         = "@CMAKE_MODULE_OUTPUT_DIRECTORY@/" BOOST_PP_STRINGIZE(CMAKE_BUILD_TYPE);
     
    100107    // Module extension
    101108    const char moduleExtension[] = "@ORXONOX_MODULE_EXTENSION@";
     109
     110    // OGRE PLUGINS
     111#ifdef NDEBUG
     112    const char ogrePlugins[] = "@OGRE_PLUGINS_RELEASE@";
     113#  ifdef DEPENDENCY_PACKAGE_ENABLE
     114    const char ogrePluginsDirectory[] = ".";
     115#  else
     116    const char ogrePluginsDirectory[] = "@OGRE_PLUGINS_FOLDER_RELEASE@";
     117#  endif
     118#else
     119    const char ogrePlugins[] = "@OGRE_PLUGINS_DEBUG@";
     120#  ifdef DEPENDENCY_PACKAGE_ENABLE
     121    const char ogrePluginsDirectory[] = ".";
     122#  else
     123    const char ogrePluginsDirectory[] = "@OGRE_PLUGINS_FOLDER_DEBUG@";
     124#  endif
     125#endif
    102126} }
    103127
Note: See TracChangeset for help on using the changeset viewer.