diff options
author | Andreas Mohr <andi@lisas.de> | 2012-09-30 08:19:00 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2012-10-01 17:21:46 (GMT) |
commit | 708b53e709712e8c90bcc411145f7a92661e96fa (patch) | |
tree | 7eaa6f1af1e256cfa8d223030b82cb5776a26776 /Modules/FindCURL.cmake | |
parent | 554d4ed584fbeba0994d36c51457128e9e9ec0dc (diff) | |
download | CMake-708b53e709712e8c90bcc411145f7a92661e96fa.zip CMake-708b53e709712e8c90bcc411145f7a92661e96fa.tar.gz CMake-708b53e709712e8c90bcc411145f7a92661e96fa.tar.bz2 |
FindCURL: Find older MSVC prebuilts
Older Windows MSVC CURL prebuilts have the .lib named as "libcurl.lib".
Diffstat (limited to 'Modules/FindCURL.cmake')
-rw-r--r-- | Modules/FindCURL.cmake | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Modules/FindCURL.cmake b/Modules/FindCURL.cmake index e080f1a..0fb8f45 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) |