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.
11 lines
221 B
11 lines
221 B
5 years ago
|
## Added `has_tools` method to qt module
|
||
|
|
||
|
It should be used to compile optional Qt code:
|
||
|
```meson
|
||
|
qt5 = import('qt5')
|
||
|
if qt5.has_tools(required: get_option('qt_feature'))
|
||
|
moc_files = qt5.preprocess(...)
|
||
|
...
|
||
|
endif
|
||
|
```
|