Merge pull request #1592 from ZappoMan/master

fix windows build
This commit is contained in:
ZappoMan 2014-01-20 09:30:29 -08:00
commit a4e3f06502
2 changed files with 2 additions and 2 deletions

View file

@ -41,5 +41,5 @@ if (UNIX)
endif (UNIX)
IF (WIN32)
target_link_libraries(${TARGET_NAME} Winmm)
target_link_libraries(${TARGET_NAME} Winmm Ws2_32)
ENDIF(WIN32)

View file

@ -35,5 +35,5 @@ link_hifi_library(shared ${TARGET_NAME} ${ROOT_DIR})
link_hifi_library(embedded-webserver ${TARGET_NAME} ${ROOT_DIR})
IF (WIN32)
target_link_libraries(${TARGET_NAME} Winmm)
target_link_libraries(${TARGET_NAME} Winmm Ws2_32)
ENDIF(WIN32)