From 41f05b1db1a00974b1f6bc8421a1adab55f174c4 Mon Sep 17 00:00:00 2001 From: enen92 <92enen@gmail.com> Date: Mon, 17 Jun 2024 17:17:29 +0100 Subject: [PATCH] [CI] Fix unsupported MSVC version This was fixed upstream in https://github.com/conan-io/cmake-conan/commit/6e5369d13720f22e07e31bb6b9018dbe60529fea --- cmake/findDependencies.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmake/findDependencies.cmake b/cmake/findDependencies.cmake index 5e116730ef..ad6b8088cf 100644 --- a/cmake/findDependencies.cmake +++ b/cmake/findDependencies.cmake @@ -2,7 +2,7 @@ if (CONAN_AUTO_INSTALL) # Download automatically the cmake-conan integration file if(NOT EXISTS "${CMAKE_BINARY_DIR}/conan.cmake") message(STATUS "Downloading conan.cmake from https://github.com/conan-io/cmake-conan") - file(DOWNLOAD "https://raw.githubusercontent.com/conan-io/cmake-conan/master/conan.cmake" + file(DOWNLOAD "https://raw.githubusercontent.com/conan-io/cmake-conan/develop/conan.cmake" "${CMAKE_BINARY_DIR}/conan.cmake" TLS_VERIFY ON) endif()