[Readme] Added x64 triplet note for Windows Quick Start (#17218)

This commit is contained in:
Mark Ingram 2021-04-12 18:54:53 +01:00 committed by GitHub
parent d978e59bfb
commit 6b0ebbb581
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -86,6 +86,18 @@ To install the libraries for your project, run:
> .\vcpkg\vcpkg install [packages to install]
```
Note: This will install x86 libraries by default. To install x64, run:
```cmd
> .\vcpkg\vcpkg install package:x64-windows
```
Or
```cmd
> .\vcpkg\vcpkg install [packages to install] --triplet=x64-windows
```
You can also search for the libraries you need with the `search` subcommand:
```cmd