Changeset 7682 for code/branches/ois_update/src
- Timestamp:
- Nov 30, 2010, 11:08:38 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/ois_update/src/SpecialConfig.h.in
r7450 r7682 94 94 95 95 // OGRE PLUGINS 96 // Apple has trouble finding OGRE plugins because of its install-name convention 97 // Adopting the executable_path structure for later use in app bundles 96 98 #ifdef NDEBUG 97 99 const char ogrePlugins[] = "@OGRE_PLUGINS_RELEASE@"; 98 100 # ifdef DEPENDENCY_PACKAGE_ENABLE 99 const char ogrePluginsDirectory[] = "."; 101 # ifdef ORXONOX_PLATFORM_APPLE 102 const char ogrePluginsDirectory[] = "@executable_path/../Plugins"; 103 # else 104 const char ogrePluginsDirectory[] = "."; 105 # endif 100 106 # else 101 107 const char ogrePluginsDirectory[] = "@OGRE_PLUGINS_FOLDER_RELEASE@"; … … 104 110 const char ogrePlugins[] = "@OGRE_PLUGINS_DEBUG@"; 105 111 # ifdef DEPENDENCY_PACKAGE_ENABLE 106 const char ogrePluginsDirectory[] = "."; 112 # ifdef ORXONOX_PLATFORM_APPLE 113 const char ogrePluginsDirectory[] = "@OGRE_PLUGINS_FOLDER_DEBUG@"; 114 # else 115 const char ogrePluginsDirectory[] = "."; 116 # endif 107 117 # else 108 118 const char ogrePluginsDirectory[] = "@OGRE_PLUGINS_FOLDER_DEBUG@";
Note: See TracChangeset
for help on using the changeset viewer.