aboutsummaryrefslogtreecommitdiff
path: root/docs/markdown/snippets
diff options
context:
space:
mode:
authorDaniel Mensinger <daniel@mensinger-ka.de>2019-09-24 23:12:01 +0200
committerDaniel Mensinger <daniel@mensinger-ka.de>2019-10-03 10:06:04 +0200
commit942f145de9744b2ffce0c01e153b18a6ea471b9d (patch)
tree69f60bd00aea6d7add1554e1c279580c62d0c70a /docs/markdown/snippets
parentc6938bd57997c6e5af57d0a58a6753f0ef4ca1d6 (diff)
downloadmeson-942f145de9744b2ffce0c01e153b18a6ea471b9d.zip
meson-942f145de9744b2ffce0c01e153b18a6ea471b9d.tar.gz
meson-942f145de9744b2ffce0c01e153b18a6ea471b9d.tar.bz2
added docs
Diffstat (limited to 'docs/markdown/snippets')
-rw-r--r--docs/markdown/snippets/is_system.md9
1 files changed, 9 insertions, 0 deletions
diff --git a/docs/markdown/snippets/is_system.md b/docs/markdown/snippets/is_system.md
new file mode 100644
index 0000000..cb1da0a
--- /dev/null
+++ b/docs/markdown/snippets/is_system.md
@@ -0,0 +1,9 @@
+## Added `is_system` kwarg to `dependency`
+
+Similar to `include_directories()`, the `dependency()` function now
+also has a `is_system` kwarg. If it is enabled, all include directories
+of the dependency are marked as system dependencies.
+
+Additionally, it is also possible to check and change the `is_system`
+state of an existing dependency object with the new `is_system()` and
+`as_system()` methods.