From 67ad0b0d7937194fd4522bf8b2a1a7f18011ce38 Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Tue, 27 Jan 2026 15:04:05 +0100 Subject: [PATCH] cmake: initialize internal `CURL_INCLUDES` variable Closes #20451 --- CMakeLists.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 5fd729f1bd..755835ece3 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1442,6 +1442,8 @@ if(WIN32) option(CURL_CA_SEARCH_SAFE "Enable safe CA bundle search (within the curl tool directory) on Windows" OFF) endif() +set(CURL_INCLUDES "") + # Check for header files if(WIN32) list(APPEND CURL_INCLUDES "winsock2.h")