From 708b53e709712e8c90bcc411145f7a92661e96fa Mon Sep 17 00:00:00 2001 From: Andreas Mohr Date: Sun, 30 Sep 2012 04:19:00 -0400 Subject: [PATCH] FindCURL: Find older MSVC prebuilts Older Windows MSVC CURL prebuilts have the .lib named as "libcurl.lib". --- Modules/FindCURL.cmake | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Modules/FindCURL.cmake b/Modules/FindCURL.cmake index e080f1a7d..0fb8f45d4 100644 --- a/Modules/FindCURL.cmake +++ b/Modules/FindCURL.cmake @@ -24,13 +24,15 @@ find_path(CURL_INCLUDE_DIR NAMES curl/curl.h) mark_as_advanced(CURL_INCLUDE_DIR) -# Look for the library. +# Look for the library (sorted from most current/relevant entry to least). find_library(CURL_LIBRARY NAMES curl # Windows MSVC prebuilts: curllib libcurl_imp curllib_static + # Windows older "Win32 - MSVC" prebuilts (libcurl.lib, e.g. libcurl-7.15.5-win32-msvc.zip): + libcurl ) mark_as_advanced(CURL_LIBRARY)