diff options
| author | ruki <[email protected]> | 2017-01-21 17:02:13 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2017-01-21 17:02:13 +0800 |
| commit | 50bc191501037fee117bee79191d21d326a0ed82 (patch) | |
| tree | c8f5dd93a4e2de8d369bafdb770f5148fd05f8d1 /xmake/plugins/project/xmake.lua | |
| parent | b028a68c3f65f827ae2b7ff0ad644a86bb4597fa (diff) | |
add set_table api for interpreter
Diffstat (limited to 'xmake/plugins/project/xmake.lua')
| -rwxr-xr-x | xmake/plugins/project/xmake.lua | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/xmake/plugins/project/xmake.lua b/xmake/plugins/project/xmake.lua index 5842486f2..2e04ddd8f 100755 --- a/xmake/plugins/project/xmake.lua +++ b/xmake/plugins/project/xmake.lua @@ -32,22 +32,22 @@ task("project") on_run("main") -- set menu - set_menu({ - -- usage - usage = "xmake project [options] [target]" + set_menu { + -- usage + usage = "xmake project [options] [target]" - -- description - , description = "Generate the project file." + -- description + , description = "Generate the project file." - -- options - , options = - { - {'k', "kind", "kv", "makefile", "Set the project kind." - , " - makefile" - , " - vs2002, vs2003, vs2005, vs2008, vs2010, vs2012, vs2013, vs2015, vs2017" } - , {nil, "outputdir", "v", ".", "Set the output directory." } - } - }) + -- options + , options = + { + {'k', "kind", "kv", "makefile", "Set the project kind." + , " - makefile" + , " - vs2002, vs2003, vs2005, vs2008, vs2010, vs2012, vs2013, vs2015, vs2017" } + , {nil, "outputdir", "v", ".", "Set the output directory." } + } + } |
