Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Jan 8, 2009, 9:37:41 PM (15 years ago)
Author:
rgrieder
Message:
  • Equipped find scripts with debug/optimized functions. If you have different debug prefixes on your platform simply change ${LIBRARY_DEBUG_POSTFIX} ("_d" default).
  • Clean up in ConfigMSVC.cmake and ConfigMinGW.cmake
  • Also had a good look at the MinGW libraries according to the libs_1889_mingw.zip (no warranty at all, hope I got them all)
  • INSTALL commands are currently limited to non Windows platforms (don't yet know why it doesn't work)
File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/buildsystem2/src/util/CMakeLists.txt

    r2512 r2579  
    1515ADD_LIBRARY(util SHARED ${UTIL_SRC_FILES})
    1616TARGET_LINK_LIBRARIES(util ${OGRE_LIBRARY})
    17 INSTALL(TARGETS util LIBRARY DESTINATION lib)
     17
     18IF (NOT WIN32)
     19  INSTALL(TARGETS util LIBRARY DESTINATION lib)
     20ENDIF (NOT WIN32)
Note: See TracChangeset for help on using the changeset viewer.