diff options
author | Dylan Baker <dylan@pnwbakers.com> | 2021-07-21 11:12:26 -0700 |
---|---|---|
committer | Dylan Baker <dylan@pnwbakers.com> | 2021-08-18 19:47:07 -0700 |
commit | a7f3703440b5aaba0ae1bded8629a3af98ea7e82 (patch) | |
tree | bb4e909789fdcf6accac4176529df794bd124af9 /docs | |
parent | a16335a958774437c9c1ab58c55ba303b2b9a07d (diff) | |
download | meson-a7f3703440b5aaba0ae1bded8629a3af98ea7e82.zip meson-a7f3703440b5aaba0ae1bded8629a3af98ea7e82.tar.gz meson-a7f3703440b5aaba0ae1bded8629a3af98ea7e82.tar.bz2 |
modules/qt: Allow using generated sources for compile_translations ts_files
Diffstat (limited to 'docs')
-rw-r--r-- | docs/markdown/_include_qt_base.md | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/docs/markdown/_include_qt_base.md b/docs/markdown/_include_qt_base.md index db0cc48..db8667c 100644 --- a/docs/markdown/_include_qt_base.md +++ b/docs/markdown/_include_qt_base.md @@ -85,7 +85,9 @@ It returns an array of targets and sources to pass to a compilation target. This method generates the necessary targets to build translation files with lrelease, it takes no positional arguments, and the following keyword arguments: - - `ts_files` (str | File)[], the list of input translation files produced by Qt's lupdate tool. + - `ts_files` (File | string | custom_target | custom_target index | generator_output)[]: + the list of input translation files produced by Qt's lupdate tool. + *New in 0.60.0*: support for custom_target, custom_target_index, and generator_output. - `install` bool: when true, this target is installed during the install step (optional). - `install_dir` string: directory to install to (optional). - `build_by_default` bool: when set to true, to have this target be built by |