From 47f40c0be3489558b19f94ffb4fd2c7a1d1c534c Mon Sep 17 00:00:00 2001 From: SChernykh Date: Mon, 3 Oct 2022 20:05:33 +0200 Subject: [PATCH] Fixed curl include directory --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 9f1a094..19edc00 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -88,7 +88,7 @@ if (NOT STATIC_BINARY AND NOT STATIC_LIBS) endif() if (CURL_INCLUDE_DIRS) - include_directories(CURL_INCLUDE_DIRS) + include_directories(${CURL_INCLUDE_DIRS}) else() include_directories(external/src/curl/include) endif()