summaryrefslogtreecommitdiff
path: root/xmake/plugins/project
diff options
context:
space:
mode:
authorruki <[email protected]>2017-01-21 17:02:13 +0800
committerruki <[email protected]>2017-01-21 17:02:13 +0800
commit50bc191501037fee117bee79191d21d326a0ed82 (patch)
treec8f5dd93a4e2de8d369bafdb770f5148fd05f8d1 /xmake/plugins/project
parentb028a68c3f65f827ae2b7ff0ad644a86bb4597fa (diff)
add set_table api for interpreter
Diffstat (limited to 'xmake/plugins/project')
-rwxr-xr-xxmake/plugins/project/xmake.lua28
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." }
+ }
+ }