aboutsummaryrefslogtreecommitdiff
path: root/landing/index.md
diff options
context:
space:
mode:
Diffstat (limited to 'landing/index.md')
-rw-r--r--landing/index.md33
1 files changed, 29 insertions, 4 deletions
diff --git a/landing/index.md b/landing/index.md
index cdb1001e..5ede48ca 100644
--- a/landing/index.md
+++ b/landing/index.md
@@ -81,10 +81,35 @@ $ xmake run -d console
## Builtin Plugins
-* Macros script plugin
-* Run the custom lua script plugin
-* Generate IDE project file plugin(makefile, vs2002 - vs2017 .. )
-* Generate doxygen document plugin
+#### Macros script plugin
+
+```bash
+$ xmake m -b # start to record
+$ xmake f -p iphoneos -m debug
+$ xmake
+$ xmake m -e # stop to record
+$ xmake m . # palyback commands
+```
+
+#### Run the custom lua script plugin
+
+```bash
+$ xmake l ./test.lua
+$ xmake l -c "print('hello xmake!')"
+$ xmake l lib.detect.find_tool gcc
+```
+
+#### Generate IDE project file plugin(makefile, vs2002 - vs2017 .. )
+
+```bash
+$ xmake project -k vs2017 -m "debug,release"
+```
+
+#### Generate doxygen document plugin
+
+```bash
+$ xmake doxygen [srcdir]
+```
## More Plugins