diff options
author | Dylan Baker <dylan@pnwbakers.com> | 2021-06-01 11:25:39 -0700 |
---|---|---|
committer | Dylan Baker <dylan@pnwbakers.com> | 2021-06-15 12:35:15 -0700 |
commit | 4575ed3d31afc58bb286d260dee9d8dceb5fb3b3 (patch) | |
tree | e2eaab407ea1f07e12e79117def9aa074948e044 /docs/markdown | |
parent | f559e56d0a339659753d3b60957da6976d8bafd4 (diff) | |
download | meson-4575ed3d31afc58bb286d260dee9d8dceb5fb3b3.zip meson-4575ed3d31afc58bb286d260dee9d8dceb5fb3b3.tar.gz meson-4575ed3d31afc58bb286d260dee9d8dceb5fb3b3.tar.bz2 |
modules/qt: Deprecated the preprocess sources keyword argument
Diffstat (limited to 'docs/markdown')
-rw-r--r-- | docs/markdown/Qt5-module.md | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/docs/markdown/Qt5-module.md b/docs/markdown/Qt5-module.md index 71eacbc..9603e1b 100644 --- a/docs/markdown/Qt5-module.md +++ b/docs/markdown/Qt5-module.md @@ -12,8 +12,11 @@ Has the following signature: `qt.preprocess(name: str | None, *sources: str)` If the `name` parameter is passed then all of the rcc files will be wirtten to a single output file -The variadic `sources` arguments have been deprecated since Meson 0.59.0, use -the `sources` keyword argument instead. +The variadic `sources` arguments have been deprecated since Meson 0.59.0, as has the `sources` keyword argument. These passed files unmodified through the preprocessor, don't do this, just add the output of the generator to another sources list: +```meson +sources = files('a.cpp', 'main.cpp', 'bar.c') +sources += qt.preprocess(qresources : ['resources']) +``` This method takes the following keyword arguments: - `qresources`: a list of strings, Files, Custom Targets, or Build Targets to pass the `rcc` compiler @@ -25,6 +28,7 @@ This method takes the following keyword arguments: - `uic_extra_arguments`, any additional arguments to `uic` (optional). Available since v0.49.0. - `rcc_extra_arguments`, any additional arguments to `rcc` (optional). Available since v0.49.0. - `dependencies`, dependency objects needed by moc. Available since v0.48.0. + - `sources`, a list of extra sources, which are added to the output unchaged. Deprecated in 0.59.0 It returns an array of targets and sources to pass to a compilation target. |