Created
February 7, 2024 16:29
-
-
Save joefreewave/4752d1943ce96a08f071d8d4eaa21d46 to your computer and use it in GitHub Desktop.
Install vpkg on ubuntu 22.04
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# install cmake | |
sudo apt install cmake ninja-build | |
export VCPKG_ROOT=${HOME}/vcpkg | |
mkdir -p ${VCPKG_ROOT} | |
git clone [email protected]:microsoft/vcpkg.git ${VCPKG_ROOT} | |
export VCPKG_FORCE_SYSTEM_BINARIES=1 | |
${VCPKG_ROOT}/bootstrap-vcpkg.sh |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment