diff options
| author | ruki <waruqi@gmail.com> | 2018-02-22 00:54:12 +0800 |
|---|---|---|
| committer | ruki <waruqi@gmail.com> | 2018-02-21 23:25:15 +0800 |
| commit | ecbd0d9d2540d182ba5817df31d1028153af3f0a (patch) | |
| tree | d9316363310b3071b6ea5ded74157cfaa729e804 /README.md | |
| parent | 7aae78e675d0cf0df5437171118a19ef22add28f (diff) | |
| download | xmake-docs-ecbd0d9d2540d182ba5817df31d1028153af3f0a.tar.gz xmake-docs-ecbd0d9d2540d182ba5817df31d1028153af3f0a.zip | |
update index faq
Diffstat (limited to 'README.md')
| -rw-r--r-- | README.md | 28 |
1 files changed, 26 insertions, 2 deletions
@@ -682,12 +682,36 @@ And add `--backtrace` to get the verbose backtrace info, then you can submit the $ xmake -v --backtrace ``` -#### How to see verbose compiling warnings and arguments? +#### How to see verbose compiling warnings? ```bash -$ xmake [-v|--verbose] +$ xmake [-w|--warning] ``` +#### How to scan source code and generate xmake.lua automaticlly + +You only need run the following command: + +```bash +$ xmake +``` + +xmake will scan all source code in current directory and build it automaticlly. + +And we can run it directly. + +```bash +$ xmake run +``` + +If we only want to generate xmake.lua file, we can run: + +```bash +$ xmake f -y +``` + +If you want to known more information please see [Scan source codes and build project without makefile](http://tboox.org/2017/01/07/build-without-makefile/) + ## Backers Thank you to all our backers! 🙏 [[Become a backer](https://opencollective.com/xmake#backer)] |
