blob: 3569ecb96d48fde1c449ea70ef2fa218bfacd6f0 (
plain)
1
2
3
4
5
6
7
8
9
10
|
## 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
```
|