fixed network link library curl in win32 case : libcurl_imp

This commit is contained in:
AlexV 2014-05-06 11:48:03 +09:00
parent 722a4d264e
commit d7f1af876a
1 changed files with 7 additions and 0 deletions

View File

@ -25,6 +25,13 @@ set(COCOS_NETWORK_SRC
)
set(COCOS_NETWORK_LINK
IF ( WIN32 )
target_link_libraries(network
libcurl_imp
${PLATFORM_LINK}
)
ELSE()
curl
${PLATFORM_LINK}
)
ENDIF()