The Meson Build System
http://mesonbuild.com/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
583 B
20 lines
583 B
5 years ago
|
## Qt5 compile_translations now supports qresource preprocessing
|
||
|
|
||
|
When using qtmod.preprocess() in combination with qtmod.compile_translations()
|
||
|
to embed translations using rcc, it is no longer required to do this:
|
||
|
|
||
|
```meson
|
||
|
ts_files = ['list', 'of', 'files']
|
||
|
qtmod.compile_translations(ts_files)
|
||
|
# lang.qrc also contains the duplicated list of files
|
||
|
lang_cpp = qtmod.preprocess(qresources: 'lang.qrc')
|
||
|
```
|
||
|
|
||
|
Instead, use:
|
||
|
```meson
|
||
|
lang_cpp = qtmod.compile_translations(qresource: 'lang.qrc')
|
||
|
```
|
||
|
|
||
|
which will automatically detect and generate the needed compile_translations
|
||
|
targets.
|