diff options
author | Dylan Baker <dylan@pnwbakers.com> | 2021-07-21 11:05:30 -0700 |
---|---|---|
committer | Dylan Baker <dylan@pnwbakers.com> | 2021-08-18 19:46:47 -0700 |
commit | a16335a958774437c9c1ab58c55ba303b2b9a07d (patch) | |
tree | 4b70b250a4c3ef6e0de3defbae46074f36dbbc29 /docs/markdown | |
parent | ff573620b0e64204158db543735eafd2b48cdbf6 (diff) | |
download | meson-a16335a958774437c9c1ab58c55ba303b2b9a07d.zip meson-a16335a958774437c9c1ab58c55ba303b2b9a07d.tar.gz meson-a16335a958774437c9c1ab58c55ba303b2b9a07d.tar.bz2 |
modules/qt: Allow Generated sources in compile_resources
Diffstat (limited to 'docs/markdown')
-rw-r--r-- | docs/markdown/_include_qt_base.md | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/docs/markdown/_include_qt_base.md b/docs/markdown/_include_qt_base.md index 63b21e1..db0cc48 100644 --- a/docs/markdown/_include_qt_base.md +++ b/docs/markdown/_include_qt_base.md @@ -8,8 +8,9 @@ It takes no positional arguments, and the following keyword arguments: - `name` (string | empty): if provided a single .cpp file will be generated, and the output of all qrc files will be combined in this file, otherwise each qrc file be written to it's own cpp file. - - `sources` (File | string)[]: A list of sources to be transpiled. Required, - must have at least one source + - `sources` (File | string | custom_target | custom_target index | generator_output)[]: + A list of sources to be transpiled. Required, must have at least one source + *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-rcc` - `method` string: The method to use to detect qt, see `dependency()` for more information. |