diff options
author | Dylan Baker <dylan@pnwbakers.com> | 2022-11-17 11:09:29 -0800 |
---|---|---|
committer | Eli Schwartz <eschwartz93@gmail.com> | 2022-12-05 15:20:09 -0500 |
commit | bb875280b695b8d0435833c192f99233e74a522a (patch) | |
tree | 126ed98c4bd7bd1019502e838f9a1212f958b355 /docs/markdown/snippets | |
parent | 3a0d6f65b037ad60fd66e5c459297f7f6fe33c4b (diff) | |
download | meson-bb875280b695b8d0435833c192f99233e74a522a.zip meson-bb875280b695b8d0435833c192f99233e74a522a.tar.gz meson-bb875280b695b8d0435833c192f99233e74a522a.tar.bz2 |
modules/rust: Add support for string include_directories
Which we support for basically every other case, but not this one.
Diffstat (limited to 'docs/markdown/snippets')
-rw-r--r-- | docs/markdown/snippets/rust_bindgen_str_include.md | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/markdown/snippets/rust_bindgen_str_include.md b/docs/markdown/snippets/rust_bindgen_str_include.md new file mode 100644 index 0000000..aad5da9 --- /dev/null +++ b/docs/markdown/snippets/rust_bindgen_str_include.md @@ -0,0 +1,4 @@ +## String arguments to the rust.bindgen include_directories argument + +Most other cases of include_directories accept strings as well as +`IncludeDirectory` objects, so lets do that here too for consistancy. |