diff options
author | Dylan Baker <dylan@pnwbakers.com> | 2021-07-21 10:49:15 -0700 |
---|---|---|
committer | Dylan Baker <dylan@pnwbakers.com> | 2021-08-18 19:46:47 -0700 |
commit | 965fcf2883a758b777a61671aa41d51b27bc1759 (patch) | |
tree | e23d063c94942da0d08677bc1d2068c0138c8323 /docs | |
parent | 35dbf7e6d4da945fbddd78674d686ace95f41e2c (diff) | |
download | meson-965fcf2883a758b777a61671aa41d51b27bc1759.zip meson-965fcf2883a758b777a61671aa41d51b27bc1759.tar.gz meson-965fcf2883a758b777a61671aa41d51b27bc1759.tar.bz2 |
modules/qt: Allow generated sources for arguemnts to compile_moc
Diffstat (limited to 'docs')
-rw-r--r-- | docs/markdown/_include_qt_base.md | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/docs/markdown/_include_qt_base.md b/docs/markdown/_include_qt_base.md index bf5e31b..881d1bf 100644 --- a/docs/markdown/_include_qt_base.md +++ b/docs/markdown/_include_qt_base.md @@ -35,9 +35,12 @@ Compiles Qt's moc files (.moc) into header and/or source files. At least one of the keyword arguments `headers` and `sources` must be provided. It takes no positional arguments, and the following keyword arguments: - - `sources` (File | string)[]: A list of sources to be transpiled into .moc - files for manual inclusion. - - `headers` (File | string)[]: A list of headers to be transpiled into .cpp files + - `sources` (File | string | custom_target | custom_target index | generator_output)[]: + A list of sources to be transpiled into .moc files for manual inclusion. + *New in 0.60.0*: support for custom_target, custom_target_index, and generator_output. + - `headers` (File | string | custom_target | custom_target index | generator_output)[]: + A list of headers to be transpiled into .cpp files + *New in 0.60.0*: support for custom_target, custom_target_index, and generator_output. - `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. |