Install VCPKG: Step 1: Clone The VCPKG Repo
Install VCPKG: Step 1: Clone The VCPKG Repo
Installing vcpkg is a two-step process: first, clone the repo, then run the bootstrapping script to produce the vcpkg binary. The repo can be cloned anywhere,
and will include the vcpkg binary after bootstrapping as well as any libraries that are installed from the command line. It is recommended to clone vcpkg as
a submodule to an existing project if possible for greater flexibility.
Make sure you are in the directory you want the tool installed to before doing this.
./vcpkg/bootstrap-vcpkg.sh
With CMake, you will need to find_package() to reference the libraries in your Cmakelists.txt files.
Browse the vcpkg documentation to learn more about how to enable different workflows.