summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorruki <[email protected]>2021-12-20 23:09:42 +0800
committerruki <[email protected]>2021-12-20 23:09:42 +0800
commitc36a12cccb8639154ac3caf6441a764f6c32a5db (patch)
treee2af779b5b6ec4e5b928dc90a4d6ecc861b44321
parent6447e8ff1bdd11274049997f3f21b1430546e4f0 (diff)
remove comments
-rw-r--r--xmake/modules/package/manager/vcpkg/install_package.lua12
1 files changed, 0 insertions, 12 deletions
diff --git a/xmake/modules/package/manager/vcpkg/install_package.lua b/xmake/modules/package/manager/vcpkg/install_package.lua
index de707d0d1..114cd538c 100644
--- a/xmake/modules/package/manager/vcpkg/install_package.lua
+++ b/xmake/modules/package/manager/vcpkg/install_package.lua
@@ -74,18 +74,6 @@ function _install_for_manifest(vcpkg, name, opt)
-- get configs
local configs = opt.configs or {}
- --[[
- -- get arch, plat and mode
-
- -- init triplet
- local triplet = arch .. "-" .. plat
- if opt.plat == "windows" and opt.shared ~= true then
- triplet = triplet .. "-static"
- if opt.vs_runtime and opt.vs_runtime:startswith("MD") then
- triplet = triplet .. "-md"
- end
- end]]
-
-- init argv
local argv = {"--feature-flags=\"versions\"", "install"}
if option.get("diagnosis") then