From 3b8a10801eef4523116294dc5c78771964ed00fd Mon Sep 17 00:00:00 2001 From: LightningShine Date: Sun, 11 Jan 2026 00:31:07 +0200 Subject: [PATCH] Update BUILDING.md with GameNetworkingSockets install Added instructions for installing GameNetworkingSockets using vcpkg. --- BUILDING.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/BUILDING.md b/BUILDING.md index d6610feb..e5ea3347 100644 --- a/BUILDING.md +++ b/BUILDING.md @@ -81,6 +81,15 @@ You can obtain the dependent packages into your local `vcpkg` folder as an expli ``` > .\vcpkg\vcpkg install --triplet=x64-windows ``` +You can also use the command +``` +> .\vcpkg\vcpkg install gamenetworkingsockets +``` +Wait for the packages to download. In the project's terminal, type +``` +vcpkg integrate install +``` +(if vcpkg hasn't been integrated into Visual Studio before). After installation, you can use the library: `#include ` If you want to use the libsodium backend, install the libsodium dependencies by adding `--x-feature=libsodium`.