From da5eb913e921d1e3cce00a0bb8811cb4f57383e9 Mon Sep 17 00:00:00 2001 From: Jeff Becker Date: Thu, 26 Dec 2019 15:01:05 -0500 Subject: [PATCH] use proper cmake call --- cmake/unix.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmake/unix.cmake b/cmake/unix.cmake index a0412d551..2de048cb5 100644 --- a/cmake/unix.cmake +++ b/cmake/unix.cmake @@ -22,7 +22,7 @@ if(NOT IOS AND NOT ANDROID AND NOT WIN32) set(CURL_LIBRARIES libcurl) set(CURL_FOUND TRUE) else() - set(CURL_LIBRARIES "-lcurl") + include(FindCURL) endif() endif()