From Sherman Wilcox, "Modified the cmakelists.txt file for the curl plugin so the proper

linker directories are set in Win32. The old cmakelists.txt would set
the lib release folder for debug builds as well. This should correct
that."
This commit is contained in:
Robert Osfield
2008-04-11 10:58:28 +00:00
parent 6429937fce
commit 5893b99122

View File

@@ -1,10 +1,14 @@
#this file is automatically generated
IF(WIN32)
SET(CMAKE_SHARED_LINKER_FLAGS_DEBUG "${CMAKE_SHARED_LINKER_FLAGS_DEBUG} /NODEFAULTLIB:MSVCRT")
ENDIF(WIN32)
INCLUDE_DIRECTORIES( ${CURL_INCLUDE_DIRS} )
SET(TARGET_SRC ReaderWriterCURL.cpp )
SET(TARGET_EXTERNAL_LIBRARIES ${CURL_LIBRARY} )
SET(TARGET_LIBRARIES_VARS CURL_LIBRARY )
#### end var setup ###
SETUP_PLUGIN(curl)