summaryrefslogtreecommitdiff
path: root/xmake/languages/swift/xmake.lua
diff options
context:
space:
mode:
authorruki <[email protected]>2018-01-31 22:41:02 +0800
committerruki <[email protected]>2018-01-31 10:06:15 +0800
commitb3e5b85cc8c74d934eaa437f00523284b773d4cc (patch)
tree80c5ca2c740bc50e2143343486e4cdf3e4f87886 /xmake/languages/swift/xmake.lua
parent0389a6137f4aa879433d83cf4e7aa7c309caa5e8 (diff)
add category to language menu
Diffstat (limited to 'xmake/languages/swift/xmake.lua')
-rw-r--r--xmake/languages/swift/xmake.lua24
1 files changed, 12 insertions, 12 deletions
diff --git a/xmake/languages/swift/xmake.lua b/xmake/languages/swift/xmake.lua
index cef5d1cb5..dddc235ab 100644
--- a/xmake/languages/swift/xmake.lua
+++ b/xmake/languages/swift/xmake.lua
@@ -141,19 +141,19 @@ language("swift")
-- set menu
set_menu {
config =
- {
- { }
- , {nil, "sc", "kv", nil, "The Swift Compiler" }
- , {nil, "sc-ld", "kv", nil, "The Swift Linker" }
- , {nil, "sc-sh", "kv", nil, "The Swift Shared Library Linker" }
+ {
+ { category = "Compiler and Linker Configuration" }
+ , { nil, "sc", "kv", nil, "The Swift Compiler" }
+ , { nil, "sc-ld", "kv", nil, "The Swift Linker" }
+ , { nil, "sc-sh", "kv", nil, "The Swift Shared Library Linker" }
- , { }
- , {nil, "links", "kv", nil, "The Link Libraries" }
- , {nil, "linkdirs", "kv", nil, "The Link Search Directories" }
- , {nil, "includedirs", "kv", nil, "The Include Search Directories" }
- , {nil, "frameworks", "kv", nil, "The Include and Link Frameworks" }
- , {nil, "frameworkdirs", "kv", nil, "The Include and Link Frameworks Search Directories" }
- }
+ , { category = "Compiler and Linker Flags Configuration" }
+ , { nil, "links", "kv", nil, "The Link Libraries" }
+ , { nil, "linkdirs", "kv", nil, "The Link Search Directories" }
+ , { nil, "includedirs", "kv", nil, "The Include Search Directories" }
+ , { nil, "frameworks", "kv", nil, "The Include and Link Frameworks" }
+ , { nil, "frameworkdirs", "kv", nil, "The Include and Link Frameworks Search Directories" }
+ }
}