Changeset 2645
- Timestamp:
- Feb 12, 2009, 2:03:07 PM (16 years ago)
- Location:
- code/branches/buildsystem2
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/buildsystem2/cmake/LibraryConfig.cmake
r2644 r2645 28 28 INCLUDE(CompareVersionStrings) 29 29 INCLUDE(FindPackageHandleStandardArgs) 30 31 # Prevent CMake from finding libraries in the installation folder on windows 32 # There might already be an installation from another compiler 33 LIST(REMOVE_ITEM CMAKE_SYSTEM_PREFIX_PATH "${CMAKE_INSTALL_PREFIX}") 30 34 31 35 ############## Platform Scripts ################# -
code/branches/buildsystem2/src/OrxonoxConfig.h.in
r2643 r2645 188 188 namespace orxonox 189 189 { 190 const char* const ORXONOX_MEDIA_PATH("@ORXONOX_MEDIA_DIRECTORY@"); 190 #ifdef ORXONOX_PLATFORM_WINDOWS 191 const char* const ORXONOX_MEDIA_PATH("../media"); 192 #elif defined(ORXONOX_PLATFORM_LINUX) 193 const char* const ORXONOX_MEDIA_PATH("../share/orxonox"); 194 #else 195 /* TODO: Apple? */ 196 const char* const ORXONOX_MEDIA_PATH("../share/orxonox"); 197 #endif 191 198 192 199 #ifdef NDEBUG
Note: See TracChangeset
for help on using the changeset viewer.