From 9ca8c59e1c563161a10ce425f0157c2efc4573b2 Mon Sep 17 00:00:00 2001 From: Amin Yahyaabadi Date: Fri, 2 Feb 2024 00:25:59 -0800 Subject: [PATCH] fix: update Windows toolchain to the latest version --- src/VCEnvironment.cmake | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/VCEnvironment.cmake b/src/VCEnvironment.cmake index 8fed3c00..6773e2a9 100644 --- a/src/VCEnvironment.cmake +++ b/src/VCEnvironment.cmake @@ -59,7 +59,8 @@ macro(msvc_toolchain) include(FetchContent) FetchContent_Declare( _msvc_toolchain - URL "https://github.com/MarkSchofield/WindowsToolchain/archive/refs/tags/v0.7.0.zip" + GIT_REPOSITORY "https://github.com/MarkSchofield/WindowsToolchain.git" + GIT_TAG "17c6d4ff6531ee268b9a22a8bcfbb3809e970e4e" ) FetchContent_MakeAvailable(_msvc_toolchain) include("${_msvc_toolchain_SOURCE_DIR}/Windows.MSVC.toolchain.cmake")