diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2021-01-30 13:20:59 +0200 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2021-01-30 16:19:59 +0000 |
commit | f72ee8e742a171db74ed32b54b85953b8dfe1d77 (patch) | |
tree | 80e015f57b8bfc3c0a0fccb6b0d4ef4d602c0a0d /docs/markdown/Qt5-module.md | |
parent | 4f8cecca9733588b083dba8488143fa1ffb0e495 (diff) | |
download | meson-f72ee8e742a171db74ed32b54b85953b8dfe1d77.zip meson-f72ee8e742a171db74ed32b54b85953b8dfe1d77.tar.gz meson-f72ee8e742a171db74ed32b54b85953b8dfe1d77.tar.bz2 |
Rewrap long text lines in docs. [skip ci]
Diffstat (limited to 'docs/markdown/Qt5-module.md')
-rw-r--r-- | docs/markdown/Qt5-module.md | 25 |
1 files changed, 14 insertions, 11 deletions
diff --git a/docs/markdown/Qt5-module.md b/docs/markdown/Qt5-module.md index 6826460..32c34ea 100644 --- a/docs/markdown/Qt5-module.md +++ b/docs/markdown/Qt5-module.md @@ -25,14 +25,15 @@ This method generates the necessary targets to build translation files with lrel - `qresource` rcc source file to extract ts_files from; cannot be used with ts_files kwarg. Available since v0.56.0. - `rcc_extra_arguments`, any additional arguments to `rcc` (optional), when used with `qresource. Available since v0.56.0. -Returns either: a list of custom targets for the compiled translations, or, if -using a `qresource` file, a single custom target containing the processed -source file, which should be passed to a main build target. +Returns either: a list of custom targets for the compiled +translations, or, if using a `qresource` file, a single custom target +containing the processed source file, which should be passed to a main +build target. ## has_tools -This method returns `true` if all tools used by this module are found, `false` -otherwise. +This method returns `true` if all tools used by this module are found, +`false` otherwise. It should be used to compile optional Qt code: ```meson @@ -56,10 +57,11 @@ This method takes the following keyword arguments: See [Qt dependencies](Dependencies.md#qt4-qt5) The 'modules' argument is used to include Qt modules in the project. -See the Qt documentation for the [list of modules](http://doc.qt.io/qt-5/qtmodules.html). +See the Qt documentation for the [list of +modules](http://doc.qt.io/qt-5/qtmodules.html). -The 'private_headers' argument allows usage of Qt's modules private headers. -(since v0.47.0) +The 'private_headers' argument allows usage of Qt's modules private +headers. (since v0.47.0) ## Example A simple example would look like this: @@ -78,9 +80,10 @@ executable('myprog', 'main.cpp', 'myclass.cpp', moc_files, dependencies : qt5_dep) ``` -Sometimes, translations are embedded inside the binary using qresource files. -In this case the ts files do not need to be explicitly listed, but will be -inferred from the built qm files listed in the qresource file. For example: +Sometimes, translations are embedded inside the binary using qresource +files. In this case the ts files do not need to be explicitly listed, +but will be inferred from the built qm files listed in the qresource +file. For example: ```meson qt5 = import('qt5') |