diff options
Diffstat (limited to 'docs/markdown/snippets')
-rw-r--r-- | docs/markdown/snippets/is_system.md | 9 |
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. |