Changeset 655

Show
Ignore:
Timestamp:
03/22/07 23:38:27 (17 months ago)
Author:
hyriand
Message:

Added some win32 libraries where required

Location:
branches/newnet/museekd
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • branches/newnet/museekd/CMakeLists.txt

    r654 r655  
    107107INCLUDE_DIRECTORIES(${CMAKE_CURRENT_BINARY_DIR}) 
    108108 
     109# Check for some OS specific libraries 
     110IF(WIN32) 
     111  SET(OS_LIBRARIES ole32 shell32 wsock32) 
     112ELSE(WIN32) 
     113  SET(OS_LIBRARIES "") 
     114ENDIF(WIN32) 
     115 
    109116# Where the wild things are... 
    110117SUBDIRS(NewNet Mucipher museekd) 
  • branches/newnet/museekd/museekd/CMakeLists.txt

    r653 r655  
    1616) 
    1717ADD_EXECUTABLE(museekd ${MUSEEKD_SRCS}) 
    18 TARGET_LINK_LIBRARIES(museekd Mucipher NewNet ${ZLIB_LIBRARIES} ${LIBXML2_LIBRARIES} ${ICONV_LIBRARIES}) 
     18TARGET_LINK_LIBRARIES(museekd Mucipher NewNet ${ZLIB_LIBRARIES} ${LIBXML2_LIBRARIES} ${ICONV_LIBRARIES} ${OS_LIBRARIES}) 
    1919INSTALL(TARGETS museekd DESTINATION bin)