summaryrefslogtreecommitdiff
path: root/xmake/languages/c++
diff options
context:
space:
mode:
authorruki <[email protected]>2018-02-01 22:52:05 +0800
committerruki <[email protected]>2018-02-01 11:12:31 +0800
commitfa98fd2e588f56713df258b6c5639db8d3bc9ad5 (patch)
tree719b50ffa4d17a995d3565deeda41950f4c9cbfd /xmake/languages/c++
parent3e77043082f8d183ca9417513bd3df28ffaaddd8 (diff)
impl path category for menuconf
Diffstat (limited to 'xmake/languages/c++')
-rw-r--r--xmake/languages/c++/xmake.lua6
1 files changed, 3 insertions, 3 deletions
diff --git a/xmake/languages/c++/xmake.lua b/xmake/languages/c++/xmake.lua
index 35ed72825..f0f3c370f 100644
--- a/xmake/languages/c++/xmake.lua
+++ b/xmake/languages/c++/xmake.lua
@@ -147,14 +147,14 @@ language("c++")
set_menu {
config =
{
- {category = "Compiler and Linker Configuration" }
+ {category = "Cross Complation Configuration/Compiler and Linker Configuration" }
, {nil, "cc", "kv", nil, "The C Compiler" }
, {nil, "cxx", "kv", nil, "The C++ Compiler" }
, {nil, "ld", "kv", nil, "The Linker" }
, {nil, "ar", "kv", nil, "The Static Library Linker" }
, {nil, "sh", "kv", nil, "The Shared Library Linker" }
- , {category = "Compiler and Linker Flags Configuration" }
+ , {category = "Cross Complation Configuration/Compiler and Linker Flags Configuration" }
, {nil, "cflags", "kv", nil, "The C Compiler Flags" }
, {nil, "cxflags", "kv", nil, "The C/C++ compiler Flags" }
, {nil, "cxxflags", "kv", nil, "The C++ Compiler Flags" }
@@ -169,7 +169,7 @@ language("c++")
, {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" }
- }
+ }
}