From 57a9a0fe272e00e0851e5251a3831a2557af23c1 Mon Sep 17 00:00:00 2001 From: Steve Williams Date: Fri, 20 Apr 2018 15:13:52 +0100 Subject: [PATCH] #6288 Drop curl requirement --- CMakeLists.txt | 7 ------- 1 file changed, 7 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 8e459314..35bbfabb 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -136,13 +136,6 @@ if (UNIX) message (FATAL_ERROR "Missing library: pthread") endif() - # curl is used on both Linux and Mac - find_package (CURL) - if (CURL_FOUND) - list (APPEND libs curl) - else() - message (FATAL_ERROR "Missing library: curl") - endif() if (APPLE) set (CMAKE_CXX_FLAGS "--sysroot ${CMAKE_OSX_SYSROOT} ${CMAKE_CXX_FLAGS} -DGTEST_USE_OWN_TR1_TUPLE=1")