diff options
| author | ruki <[email protected]> | 2017-03-23 10:23:55 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2017-03-23 10:23:55 +0800 |
| commit | bf7680fde8a4d1c03ad1caabcb5a452437b33fef (patch) | |
| tree | e43c01c16213b501abab222862eb0f8f02d8dfaa /docs/plugins.md | |
| parent | dcf38006d36ec96bbc20be32f97ceb7b5f176821 (diff) | |
modify docs
Diffstat (limited to 'docs/plugins.md')
| -rw-r--r-- | docs/plugins.md | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/docs/plugins.md b/docs/plugins.md index bbeb90f46..0c81b2fbc 100644 --- a/docs/plugins.md +++ b/docs/plugins.md @@ -370,6 +370,30 @@ $ xmake project -k makefile $ xmake project -k [vs2008|vs2013|vs2015|..] ``` +v2.1.2 or later, it supports multi-mode and multi-architecture generation for vs201x project. + +For example: + +```bash +$ xmake project -k vs2017 -m "debug,release" +``` + +It will generate four project configurations: `debug|x86`, `debug|x64`, `release|x86`, `release|x64`. + +Or you can set modes to `xmake.lua`: + +```lua +set_modes("debug", "release") +``` + +Then, we run the following command: + +```bash +$ xmake project -k vs2017 +``` + +The effect is same. + #### Generate Doxygen Document Please ensure that the doxygen tool has been installed first. |
