diff options
author | Brad King <brad.king@kitware.com> | 2018-10-22 08:52:28 -0400 |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2018-10-22 08:55:40 -0400 |
commit | 031002456381245f88f64b0826798b1e249e8e39 (patch) | |
tree | faac9fc9ec2ff5dd1a0dce599dbd3a97f77700de /CMakeLists.txt | |
parent | b9d1107790f742dd263a57855f6a5870aae934df (diff) | |
download | cmake-031002456381245f88f64b0826798b1e249e8e39.tar.gz |
curl: Update build within CMake to account for 7.61 changes
The_CURL_STATICLIB option was replaced by BUILD_SHARED_LIBS.
Drop our own CURL_STATICLIB compile definition because it is now
provided by curl's usage requirements.
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index e88e925a09..20ee36cc13 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -410,7 +410,6 @@ macro (CMAKE_BUILD_UTILITIES) set(CURL_SPECIAL_ZLIB_H ${CMAKE_ZLIB_HEADER}) set(CURL_SPECIAL_LIBZ_INCLUDES ${CMAKE_ZLIB_INCLUDES}) set(CURL_SPECIAL_LIBZ ${CMAKE_ZLIB_LIBRARIES}) - add_definitions(-DCURL_STATICLIB) set(CMAKE_CURL_INCLUDES) set(CMAKE_CURL_LIBRARIES cmcurl) if(CMAKE_TESTS_CDASH_SERVER) |