diff options
author | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2017-05-08 20:12:29 -0400 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2017-05-08 20:12:29 -0400 |
commit | 0a8621a9bd79ef2c96d44e966fb0d72b1ac86b20 (patch) | |
tree | 445c68677ade9b4a05c83e8aa0f578bb3cc78942 /docs/markdown/Reference-manual.md | |
parent | fba29b14e73497ffee4d44c8ee16c2a118560cd2 (diff) | |
download | meson-0a8621a9bd79ef2c96d44e966fb0d72b1ac86b20.zip meson-0a8621a9bd79ef2c96d44e966fb0d72b1ac86b20.tar.gz meson-0a8621a9bd79ef2c96d44e966fb0d72b1ac86b20.tar.bz2 |
docs: add hyperlinks and a short description of unity builds
At first I thought this is something about Ubuntu ;)
Diffstat (limited to 'docs/markdown/Reference-manual.md')
-rw-r--r-- | docs/markdown/Reference-manual.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/markdown/Reference-manual.md b/docs/markdown/Reference-manual.md index 00a891b..560b519 100644 --- a/docs/markdown/Reference-manual.md +++ b/docs/markdown/Reference-manual.md @@ -660,9 +660,9 @@ The `meson` object allows you to introspect various properties of the system. Th - `backend()` *(added 0.37.0)* returns a string representing the current backend: `ninja`, `vs2010`, `vs2015`, or `xcode`. -- `is_cross_build()` returns `true` if the current build is a cross build and `false` otherwise +- `is_cross_build()` returns `true` if the current build is a [cross build](Cross-compilation.md) and `false` otherwise -- `is_unity()` returns `true` when doing a unity build and `false` otherwise +- `is_unity()` returns `true` when doing a [unity build](Unity-builds.md) (multiple sources are combined before compilation to reduce build time) and `false` otherwise - `is_subproject()` returns `true` if the current project is being built as a subproject of some other project and `false` otherwise |