diff options
author | Dylan Baker <dylan@pnwbakers.com> | 2019-01-07 11:27:38 -0800 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2019-01-07 22:56:17 +0200 |
commit | 6c76b92dff836616402ab2ce39fa0ff274da1fd5 (patch) | |
tree | c22f03ffd1757da6f4c35a22cb319f8a690cb05a /docs | |
parent | 768fa502ac6aed64ffd3dfc6952ac56b295e6648 (diff) | |
download | meson-6c76b92dff836616402ab2ce39fa0ff274da1fd5.zip meson-6c76b92dff836616402ab2ce39fa0ff274da1fd5.tar.gz meson-6c76b92dff836616402ab2ce39fa0ff274da1fd5.tar.bz2 |
docs: document the native keyword argument for reference-manule [skip ci]
Diffstat (limited to 'docs')
-rw-r--r-- | docs/markdown/Reference-manual.md | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/docs/markdown/Reference-manual.md b/docs/markdown/Reference-manual.md index 0ddd4a9..1e0a11c 100644 --- a/docs/markdown/Reference-manual.md +++ b/docs/markdown/Reference-manual.md @@ -565,6 +565,8 @@ be passed to [shared and static libraries](#library). - `d_module_versions` list of module version identifiers set when compiling D sources - `d_debug` list of module debug identifiers set when compiling D sources - `pie` *(added 0.49.0)* build a position-independent executable +- `native`, is a boolean controlling whether the target is compiled for the + build or host machines. Defaults to false, building for the host machine. The list of `sources`, `objects`, and `dependencies` is always flattened, which means you can freely nest and add lists while |