summaryrefslogtreecommitdiff
path: root/xmake/actions/config/xmake.lua
diff options
context:
space:
mode:
authorruki <[email protected]>2018-02-03 00:42:26 +0800
committerruki <[email protected]>2018-02-02 22:14:40 +0800
commit63ecc9139b29a21c0c812e9dca64dbdee2e5e725 (patch)
tree1bd0ae6bcb2cf411afd9da335adb9145ce2f7da3 /xmake/actions/config/xmake.lua
parent22e4a987e03ee6884da0b2cbb8a23397e7f17931 (diff)
improve choice help menu
Diffstat (limited to 'xmake/actions/config/xmake.lua')
-rw-r--r--xmake/actions/config/xmake.lua19
1 files changed, 0 insertions, 19 deletions
diff --git a/xmake/actions/config/xmake.lua b/xmake/actions/config/xmake.lua
index 5641d0624..3eee423b7 100644
--- a/xmake/actions/config/xmake.lua
+++ b/xmake/actions/config/xmake.lua
@@ -53,22 +53,6 @@ task("config")
, {category = "."}
, {'p', "plat", "kv", "$(host)", "Compile for the given platform."
-
- -- show the description of all platforms
- , function ()
-
- -- import platform
- import("core.platform.platform")
-
- -- make description
- local description = {}
- for i, plat in ipairs(platform.plats()) do
- description[i] = " - " .. plat
- end
-
- -- get it
- return description
- end
, values = function ()
return import("core.platform.platform").plats()
end }
@@ -100,9 +84,6 @@ task("config")
, " - release"
, " - ... (custom)" }
, {'k', "kind", "kv", "static", "Compile for the given target kind."
- , " - static"
- , " - shared"
- , " - binary"
, values = function ()
return {"static", "shared", "binary"}
end }