diff options
author | Pierre Lamot <pierre@videolabs.io> | 2024-06-05 10:11:59 +0200 |
---|---|---|
committer | Pierre Lamot <pierre@videolabs.io> | 2025-01-08 09:50:51 +0100 |
commit | 7c68090a33cdf3e8cc96ee98529da89756c014e4 (patch) | |
tree | c858070c4a2f21a2943be16dda4e552e4cd0bd5f /docs/markdown | |
parent | 223388a91e62b9a916900ebf15a96cecfb7e2eb0 (diff) | |
download | meson-7c68090a33cdf3e8cc96ee98529da89756c014e4.zip meson-7c68090a33cdf3e8cc96ee98529da89756c014e4.tar.gz meson-7c68090a33cdf3e8cc96ee98529da89756c014e4.tar.bz2 |
qt module: allow moc to generate json introspection file
Diffstat (limited to 'docs/markdown')
-rw-r--r-- | docs/markdown/Qt6-module.md | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/markdown/Qt6-module.md b/docs/markdown/Qt6-module.md index 7b6f947..9e4e016 100644 --- a/docs/markdown/Qt6-module.md +++ b/docs/markdown/Qt6-module.md @@ -69,6 +69,8 @@ It takes no positional arguments, and the following keyword arguments: directory. For instance, when a file called `subdir/one.input` is processed it generates a file `{target private directory}/subdir/one.out` when `true`, and `{target private directory}/one.out` when `false` (default). + - `output_json` bool: *New in 1.7.0*. If `true`, generates additionnaly a + JSON representation which may be used by external tools such as qmltyperegistrar ## preprocess @@ -111,6 +113,8 @@ This method takes the following keyword arguments: directory. For instance, when a file called `subdir/one.input` is processed it generates a file `{target private directory}/subdir/one.out` when `true`, and `{target private directory}/one.out` when `false` (default). + - `moc_output_json` bool: *New in 1.7.0*. If `true`, generates additionnaly a + JSON representation which may be used by external tools such as qmltyperegistrar It returns an array of targets and sources to pass to a compilation target. |