Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions docs/overview/acquire-msvc.md
Original file line number Diff line number Diff line change
Expand Up @@ -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](/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.
Expand Down