From 2a079553e7e7bd61088d81550d9afe2875449a48 Mon Sep 17 00:00:00 2001 From: Eric Brumer Date: Wed, 26 Aug 2026 13:55:38 -0700 Subject: [PATCH 1/3] Update acquisition doc for vcpkg --- docs/overview/acquire-msvc.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/docs/overview/acquire-msvc.md b/docs/overview/acquire-msvc.md index 0acc6adb72..75d134b5e3 100644 --- a/docs/overview/acquire-msvc.md +++ b/docs/overview/acquire-msvc.md @@ -197,6 +197,20 @@ cmake -G "Visual Studio 18 2026" -T "version=14.51" ..\ cmake -G "Visual Studio 18 2026" -T "version=14.52" ..\ ``` +### vcpkg + +Configure vcpkg with the [VCPKG_PLATFORM_TOOLSET_VERSION](https://learn.microsoft.com/en-us/vcpkg/users/triplets#vcpkg_platform_toolset_version) triplet. For example: + +``` +set(VCPKG_PLATFORM_TOOLSET_VERSION "14.50") +``` + +or + +``` +set(VCPKG_PLATFORM_TOOLSET_VERSION "14.51") +``` + ### Visual Studio Command Prompt Some build systems need the command prompt to have the `PATH`, `LIB`, `INCLUDE`, and related environment variables set before you run them. From 96d38414c9840b3b1184c4529aff8e1f6baf7958 Mon Sep 17 00:00:00 2001 From: Eric Brumer Date: Wed, 26 Aug 2026 15:06:44 -0700 Subject: [PATCH 2/3] remove en-us from URL --- docs/overview/acquire-msvc.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/overview/acquire-msvc.md b/docs/overview/acquire-msvc.md index 75d134b5e3..0aa5397d2a 100644 --- a/docs/overview/acquire-msvc.md +++ b/docs/overview/acquire-msvc.md @@ -199,7 +199,7 @@ cmake -G "Visual Studio 18 2026" -T "version=14.52" ..\ ### vcpkg -Configure vcpkg with the [VCPKG_PLATFORM_TOOLSET_VERSION](https://learn.microsoft.com/en-us/vcpkg/users/triplets#vcpkg_platform_toolset_version) triplet. For example: +Configure vcpkg with the [VCPKG_PLATFORM_TOOLSET_VERSION](https://learn.microsoft.com/vcpkg/users/triplets#vcpkg_platform_toolset_version) triplet. For example: ``` set(VCPKG_PLATFORM_TOOLSET_VERSION "14.50") From 25cefec1adf4d2c07f8b40287b467db1447f1588 Mon Sep 17 00:00:00 2001 From: Eric Brumer Date: Wed, 26 Aug 2026 15:08:51 -0700 Subject: [PATCH 3/3] use relative link to vcpkg docs --- docs/overview/acquire-msvc.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/overview/acquire-msvc.md b/docs/overview/acquire-msvc.md index 0aa5397d2a..e26f0ab46b 100644 --- a/docs/overview/acquire-msvc.md +++ b/docs/overview/acquire-msvc.md @@ -199,7 +199,7 @@ cmake -G "Visual Studio 18 2026" -T "version=14.52" ..\ ### vcpkg -Configure vcpkg with the [VCPKG_PLATFORM_TOOLSET_VERSION](https://learn.microsoft.com/vcpkg/users/triplets#vcpkg_platform_toolset_version) triplet. For example: +Configure vcpkg with the [VCPKG_PLATFORM_TOOLSET_VERSION](/vcpkg/users/triplets#vcpkg_platform_toolset_version) triplet. For example: ``` set(VCPKG_PLATFORM_TOOLSET_VERSION "14.50")