summaryrefslogtreecommitdiff
path: root/xmake/plugins/doxygen/xmake.lua
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/doxygen/xmake.lua
parentb028a68c3f65f827ae2b7ff0ad644a86bb4597fa (diff)
add set_table api for interpreter
Diffstat (limited to 'xmake/plugins/doxygen/xmake.lua')
-rwxr-xr-xxmake/plugins/doxygen/xmake.lua26
1 files changed, 13 insertions, 13 deletions
diff --git a/xmake/plugins/doxygen/xmake.lua b/xmake/plugins/doxygen/xmake.lua
index 6ea2cf21b..785815080 100755
--- a/xmake/plugins/doxygen/xmake.lua
+++ b/xmake/plugins/doxygen/xmake.lua
@@ -32,21 +32,21 @@ task("doxygen")
on_run("main")
-- set menu
- set_menu({
- -- usage
- usage = "xmake doxygen [options] [arguments]"
+ set_menu {
+ -- usage
+ usage = "xmake doxygen [options] [arguments]"
- -- description
- , description = "Generate the doxygen document."
+ -- description
+ , description = "Generate the doxygen document."
- -- options
- , options =
- {
- {'o', "outputdir", "kv", nil, "Set the output directory." }
- , {}
- , {nil, "srcdir", "v", "src", "Set the source code directory." }
- }
- })
+ -- options
+ , options =
+ {
+ {'o', "outputdir", "kv", nil, "Set the output directory." }
+ , {}
+ , {nil, "srcdir", "v", "src", "Set the source code directory." }
+ }
+ }