From cfc7b302fe1da0a5ee98cf5034d6c8e4be17ffea Mon Sep 17 00:00:00 2001 From: Lion Kortlepel Date: Mon, 9 Aug 2021 00:43:00 +0200 Subject: [PATCH] fix include path, libcurl library path --- CMakeLists.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 90c449a..b894745 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -15,6 +15,8 @@ if (WIN32) endif() add_subdirectory("include/curl") +set(CURL_LIBRARY CURL::libcurl) +set(CURL_INCLUDE_DIR ${CMAKE_SOURCE_DIR}/include/curl/include) add_subdirectory("include/sentry-native")