From 93af28751fe2fc78dbb9061655c2d91501a2fd1c Mon Sep 17 00:00:00 2001 From: Jarred Sumner Date: Thu, 6 Feb 2025 18:07:55 -0800 Subject: [PATCH] Update CMakeLists.txt --- CMakeLists.txt | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index b9249d8993..6762f49e66 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -12,6 +12,12 @@ list(APPEND CMAKE_MODULE_PATH include(Policies) include(Globals) +if (CMAKE_HOST_WIN32) + # Workaround for TLS certificate verification issue on Windows when downloading from GitHub + # Remove this once we've bumped the CI machines build image + set(CMAKE_TLS_VERIFY 0) +endif() + # --- Compilers --- if(CMAKE_HOST_APPLE)