diff options
author | Salamandar <Salamandar@users.noreply.github.com> | 2018-09-28 22:01:27 +0200 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2018-09-28 13:01:27 -0700 |
commit | 26a5e9a95fe766c253355474c8e6ad97b75549c8 (patch) | |
tree | 088a261a6ebfdb1a2fe0bd8dd959a851a377816f /docs/markdown/Qt5-module.md | |
parent | ba7b7d0991cff962c7c0dd50d082c1bc3fea6c73 (diff) | |
download | meson-26a5e9a95fe766c253355474c8e6ad97b75549c8.zip meson-26a5e9a95fe766c253355474c8e6ad97b75549c8.tar.gz meson-26a5e9a95fe766c253355474c8e6ad97b75549c8.tar.bz2 |
Add support for uic_extra_arguments to qt5 (#4178)
Diffstat (limited to 'docs/markdown/Qt5-module.md')
-rw-r--r-- | docs/markdown/Qt5-module.md | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/docs/markdown/Qt5-module.md b/docs/markdown/Qt5-module.md index f59b6ec..9542a81 100644 --- a/docs/markdown/Qt5-module.md +++ b/docs/markdown/Qt5-module.md @@ -9,8 +9,9 @@ This method takes the following keyword arguments: - `moc_headers`, `moc_sources`, `ui_files`, `qresources`, which define the files that require preprocessing with `moc`, `uic` and `rcc` - `include_directories`, the directories to add to header search path for `moc` (optional) - `moc_extra_arguments`, any additional arguments to `moc` (optional). Available since v0.44.0. + - `uic_extra_arguments`, any additional arguments to `uic` (optional). Available since v0.49.0. - `dependencies`, dependency objects needed by moc. Available since v0.48.0. - + It returns an opaque object that should be passed to a main build target. ## compile_translations (since v0.44.0) |