mirror of https://github.com/axmolengine/axmol.git
fixed network link library curl in win32 case : libcurl_imp
This commit is contained in:
parent
722a4d264e
commit
d7f1af876a
|
@ -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()
|
||||
|
|
Loading…
Reference in New Issue