From 37682c666890aa488eda93b0634660b007d9a7c0 Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Thu, 27 Nov 2008 17:31:49 +0000 Subject: [PATCH] From Cedric Pinson, "updated the CMakelist.txt of curl plugin to compile with the static library of curl. I added the external dependency wldap32" --- src/osgPlugins/curl/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/osgPlugins/curl/CMakeLists.txt b/src/osgPlugins/curl/CMakeLists.txt index f942fbb58..899fa19a6 100644 --- a/src/osgPlugins/curl/CMakeLists.txt +++ b/src/osgPlugins/curl/CMakeLists.txt @@ -7,7 +7,7 @@ IF(WIN32) SET(CMAKE_SHARED_LINKER_FLAGS_DEBUG "${CMAKE_SHARED_LINKER_FLAGS_DEBUG} /NODEFAULTLIB:MSVCRT") IF(CURL_IS_STATIC) ADD_DEFINITIONS(-DCURL_STATICLIB) - SET(TARGET_EXTERNAL_LIBRARIES ws2_32 winmm) + SET(TARGET_EXTERNAL_LIBRARIES ws2_32 winmm wldap32) ENDIF(CURL_IS_STATIC) ENDIF(WIN32)