From 7f6a1a5005d5e934f8154862b36d615309eefc36 Mon Sep 17 00:00:00 2001 From: Amin Yahyaabadi Date: Mon, 2 Sep 2024 23:22:08 -0700 Subject: [PATCH] fix: update Windows toolchain to v0.11.0 --- src/VCEnvironment.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/VCEnvironment.cmake b/src/VCEnvironment.cmake index 8c487cb7..9398f97a 100644 --- a/src/VCEnvironment.cmake +++ b/src/VCEnvironment.cmake @@ -60,7 +60,7 @@ macro(msvc_toolchain) include(FetchContent) FetchContent_Declare( _msvc_toolchain GIT_REPOSITORY "https://github.com/MarkSchofield/WindowsToolchain.git" - GIT_TAG "v0.10.0" + GIT_TAG "v0.11.0" ) FetchContent_MakeAvailable(_msvc_toolchain) include("${_msvc_toolchain_SOURCE_DIR}/Windows.MSVC.toolchain.cmake")