From de1c5f045bc961abc3e2feeed8006ec39824a184 Mon Sep 17 00:00:00 2001 From: MSlezak2 <37062938+MSlezak2@users.noreply.github.com> Date: Tue, 8 Nov 2022 18:54:24 +0100 Subject: [PATCH] Provide a hint about how to install x64 version instead of default x86 using vcpkg --- Working-on-Windows.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Working-on-Windows.md b/Working-on-Windows.md index 337d12b..b5d58d7 100644 --- a/Working-on-Windows.md +++ b/Working-on-Windows.md @@ -18,6 +18,10 @@ You can download and install raylib using the [vcpkg](https://github.com/Microso vcpkg integrate install vcpkg install raylib +The default triplet in vcpkg is set to "x86-windows". If you want to install x64 version instead, you should use following command: + + vcpkg install raylib:x64-windows + *The raylib port in vcpkg is kept up to date by Microsoft team members and community contributors. If the version is out of date, please [create an issue or pull request](https://github.com/Microsoft/vcpkg) on the vcpkg repository.* ---