diff options
author | Eli Schwartz <eschwartz@archlinux.org> | 2021-12-06 09:45:41 -0500 |
---|---|---|
committer | Eli Schwartz <eschwartz@archlinux.org> | 2021-12-06 09:46:55 -0500 |
commit | 185c4e3c95f32de429179b025ef86785b06bc3de (patch) | |
tree | 0fe8daa3c9c7f9cb8614f4721ea4eb67f4474614 /docs/markdown | |
parent | 798f5ef17867da9e47c6819d271178eaae0fcf0f (diff) | |
download | meson-185c4e3c95f32de429179b025ef86785b06bc3de.zip meson-185c4e3c95f32de429179b025ef86785b06bc3de.tar.gz meson-185c4e3c95f32de429179b025ef86785b06bc3de.tar.bz2 |
doc: fix missing kwarg in qt5 module
compile_moc accepts "dependencies" for the same reason preprocess does,
but the original documentation never copied this over from the
preprocess docs.
See: https://github.com/mesonbuild/meson/issues/9683#issuecomment-986825041
Diffstat (limited to 'docs/markdown')
-rw-r--r-- | docs/markdown/_include_qt_base.md | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/docs/markdown/_include_qt_base.md b/docs/markdown/_include_qt_base.md index 51665f8..e624c17 100644 --- a/docs/markdown/_include_qt_base.md +++ b/docs/markdown/_include_qt_base.md @@ -46,6 +46,7 @@ It takes no positional arguments, and the following keyword arguments: - `extra_args` string[]: Extra arguments to pass directly to `qt-moc` - `method` string: The method to use to detect qt, see `dependency()` for more information. + - `dependencies`: dependency objects whose include directories are used by moc. - `include_directories` (string | IncludeDirectory)[]: A list of `include_directory()` objects used when transpiling the .moc files |