Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Feb 12, 2009, 4:24:59 PM (15 years ago)
Author:
rgrieder
Message:
  • Libraries get built to lib/ instead of bin/. CMake 2.6.0 finally treats DLLs as runtime target, so we can do this.
  • Bugfix in media directory finding
  • Bugfix in OrxonoxConfig.h.in
  • Looking for stdint.h instead of cstdint to have uint32_t, etc. on tardis
File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/buildsystem2/cmake/BuildConfig.cmake

    r2644 r2650  
    2929# Set binary output directories
    3030SET(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/bin)
    31 SET(CMAKE_LIBRARY_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/bin)
    32 SET(CMAKE_ARCHIVE_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/bin)
     31SET(CMAKE_LIBRARY_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/lib)
     32SET(CMAKE_ARCHIVE_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/lib)
    3333
    3434# Sets where to find the external libraries like OgreMain.dll at runtime
Note: See TracChangeset for help on using the changeset viewer.