aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.md12
1 files changed, 12 insertions, 0 deletions
diff --git a/README.md b/README.md
index 80f8a5960..d094cd3fb 100644
--- a/README.md
+++ b/README.md
@@ -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