summaryrefslogtreecommitdiff
path: root/xmake/languages/objc++/xmake.lua
diff options
context:
space:
mode:
authorruki <[email protected]>2018-02-01 22:58:23 +0800
committerruki <[email protected]>2018-02-01 11:50:22 +0800
commitea8eab3b9469101595502673dda4db42e167fcc0 (patch)
tree7c794f6ec0eb0013816ce89a8a25ee9293639bcc /xmake/languages/objc++/xmake.lua
parent65b0ab3efb3b7a503804dc412189801431475dcd (diff)
improve cross complation configuration
Diffstat (limited to 'xmake/languages/objc++/xmake.lua')
-rw-r--r--xmake/languages/objc++/xmake.lua10
1 files changed, 6 insertions, 4 deletions
diff --git a/xmake/languages/objc++/xmake.lua b/xmake/languages/objc++/xmake.lua
index 8362dd254..cfb26e528 100644
--- a/xmake/languages/objc++/xmake.lua
+++ b/xmake/languages/objc++/xmake.lua
@@ -147,24 +147,26 @@ language("objc++")
set_menu {
config =
{
- {category = "Cross Complation Configuration/Compiler and Linker Configuration/Objc++" }
+ {category = "Cross Complation Configuration/Compiler Configuration" }
, {nil, "mm", "kv", nil, "The Objc Compiler" }
, {nil, "mxx", "kv", nil, "The Objc++ Compiler" }
+
+ , {category = "Cross Complation Configuration/Linker Configuration" }
, {nil, "ld", "kv", nil, "The Linker" }
, {nil, "ar", "kv", nil, "The Static Library Linker" }
, {nil, "sh", "kv", nil, "The Shared Library Linker" }
- , {category = "Cross Complation Configuration/Compiler and Linker Flags Configuration/Objc++" }
+ , {category = "Cross Complation Configuration/Compiler Flags Configuration" }
, {nil, "mflags", "kv", nil, "The Objc Compiler Flags" }
, {nil, "mxflags", "kv", nil, "The Objc/c++ Compiler Flags" }
, {nil, "mxxflags", "kv", nil, "The Objc++ Compiler Flags" }
- , { }
+ , {category = "Cross Complation Configuration/Linker Flags Configuration" }
, {nil, "ldflags", "kv", nil, "The Binary Linker Flags" }
, {nil, "arflags", "kv", nil, "The Static Library Linker Flags" }
, {nil, "shflags", "kv", nil, "The Shared Library Linker Flags" }
- , { }
+ , {category = "Cross Complation Configuration/Builtin 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" }