Skip to content

vcpkg setup

Charlton, Scott R edited this page Feb 26, 2023 · 3 revisions

Windows

Command prompt

cd \
git clone git@github.com:microsoft/vcpkg.git
cd vcpkg
setx VCPKG_INSTALLATION_ROOT "%CD%"
setx VCPKG_DEFAULT_TRIPLET x64-windows
exit

Powershell

cd \
git clone git@github.com:microsoft/vcpkg.git
cd vcpkg
setx VCPKG_INSTALLATION_ROOT "$PWD"
setx VCPKG_DEFAULT_TRIPLET x64-windows
exit

Install yaml-cpp

"%VCPKG_INSTALLATION_ROOT%\vcpkg" install yaml-cpp:x64-windows
&"$env:VCPKG_INSTALLATION_ROOT\vcpkg" install yaml-cpp:x64-windows
Clone this wiki locally