1

In classic mode you can run vcpkg list to see all installed packages. What is the equivalent in manifest mode?

vcpkg.json does not specify versions, so I would like to see what versions I actually got.

Zitrax
  • 19,036
  • 20
  • 88
  • 110

1 Answers1

1

Try using --x-install-root. Given that default value (vcpkg_installed) was used during install it should be:

vcpkg list --x-install-root=<path-to-vcpkg-json>\vcpkg_installed\<triplet>
DGa
  • 26
  • 3
  • 1
    That option works. Digging into it a bit I noticed that the vcpkg.cmake used as the cmake toolchain file points to `"${CMAKE_BINARY_DIR}/vcpkg_installed"`, so thats the path I had to use. – Zitrax May 02 '23 at 07:25