summaryrefslogtreecommitdiff
path: root/xmake/plugins/project/xmake.lua
diff options
context:
space:
mode:
authorruki <[email protected]>2019-08-22 22:33:38 +0800
committerruki <[email protected]>2019-08-22 09:21:49 +0800
commit6db483c5e04ce7c9969dfb0389501368ba9c31fd (patch)
tree9265362df2a48dee87e566583a2dbfdb73fa3aa3 /xmake/plugins/project/xmake.lua
parent3e3541b38ed974217159037c2410ba701c0fcaf6 (diff)
update project plugin help
Diffstat (limited to 'xmake/plugins/project/xmake.lua')
-rw-r--r--xmake/plugins/project/xmake.lua5
1 files changed, 3 insertions, 2 deletions
diff --git a/xmake/plugins/project/xmake.lua b/xmake/plugins/project/xmake.lua
index 15d2ac50b..03edeb0ad 100644
--- a/xmake/plugins/project/xmake.lua
+++ b/xmake/plugins/project/xmake.lua
@@ -40,6 +40,7 @@ task("project")
{
{'k', "kind", "kv", "makefile", "Set the project kind."
, " - makefile"
+ , " - cmakelists"
, " - compile_flags"
, " - compile_commands (clang compilation database with json format)"
, " - vs (auto detect), vs2002, vs2003, vs2005, vs2008"
@@ -47,10 +48,10 @@ task("project")
, " - vsxmake (auto detect), vsxmake2010 ~ vsxmake2019" }
, {'m', "modes", "kv", nil, "Set the project modes."
, " e.g. "
- , " - xmake project -k vs2015 -m \"release" .. path.envsep() .. "debug\"" }
+ , " - xmake project -k vsxmake -m \"release" .. path.envsep() .. "debug\"" }
, {'a', "archs", "kv", nil, "Set the project archs."
, " e.g. "
- , " - xmake project -k vs2015 -a \"x86" .. path.envsep() .. "x64\"" }
+ , " - xmake project -k vsxmake -a \"x86" .. path.envsep() .. "x64\"" }
, {nil, "outputdir", "v", ".", "Set the output directory." }
}
}