美文网首页
vcpkg remove多个lib

vcpkg remove多个lib

作者: XBruce | 来源:发表于2023-07-03 10:25 被阅读0次

.\vcpkg.exe remove boost-vcpkg-helpers --recurse

if you have powershell, you can conjure up something like this:

vcpkg list | % { $_.Split(" ") | Select-Object -first 1 } | Where-Object { $_ -like "*:x86-windows" } | ForEach-Object -Process { vcpkg remove --recurse $_ }
vcpkg remove boost-vcpkg-helpers --recurse
.\vcpkg.exe remove boost-uninstall --recurse

Removing packages using a pattern or regular expression · Issue #8486 · microsoft/vcpkg (github.com)

相关文章

网友评论

      本文标题:vcpkg remove多个lib

      本文链接:https://www.haomeiwen.com/subject/lkpqudtx.html