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/network/CMakeLists.txt

    r2518 r2579  
    3131)
    3232
    33 INSTALL(TARGETS network LIBRARY DESTINATION lib)
     33IF (NOT WIN32)
     34  INSTALL(TARGETS network LIBRARY DESTINATION lib)
     35ENDIF (NOT WIN32)
    3436
    3537# build those parts only on request.
     
    4345    ${OGRE_LIBRARY}
    4446    network
    45     ${ENet_LIBRARIES}
     47    ${ENet_LIBRARY}
    4648    ${ZLIB_LIBRARY}
    4749  )
Note: See TracChangeset for help on using the changeset viewer.