英文:
List vcpkg packages in manifest mode
问题
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.
英文:
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.
答案1
得分: 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>
英文:
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>
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论