I am trying out vcpkg package manager but I am running in some issues. I have a c++ project that uses cmake and vcpkg and have used vcpkg to install the cache2 package. Now everything works but as soon as I push the project and clone it I can't find how to restore the installed packages.
What I have done is this:
- installed vcpkg as submodule
- installed cache2 with vcpkg
- added cache2 to cmake
Till here everything works fine now when I push and clone the project it goes wrong.
- git clone --recurse-submodules
- .\extern\vcpkg\bootstrap-vcpkg.bat
- vcpkg list
Now nothing appears to be installed and I don't want everyone to install all the packages one by one when they clone. Is there someway to automatically install all packages when cloning?