aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/modules/qt5.py
diff options
context:
space:
mode:
authorEli Schwartz <eschwartz@archlinux.org>2020-06-25 11:32:12 -0400
committerNirbheek Chauhan <nirbheek.chauhan@gmail.com>2020-07-13 22:28:58 +0000
commitf2dad788e782a9e7b5abb8a036370f6d8e29f7fc (patch)
tree85488942f5ceda014f534b742beb3325eed0751e /mesonbuild/modules/qt5.py
parent848fcb6a537d58cf5d49ac9d3d10b4444bb420ad (diff)
downloadmeson-f2dad788e782a9e7b5abb8a036370f6d8e29f7fc.zip
meson-f2dad788e782a9e7b5abb8a036370f6d8e29f7fc.tar.gz
meson-f2dad788e782a9e7b5abb8a036370f6d8e29f7fc.tar.bz2
qt module: rcc supports depfiles now, given a recent enough version of Qt5
Add depfile support to generated targets for Qt >= 5.14. Move warning into the module init itself, to check if the version is too old before issuing. Also tweak the wording itself, to advise upgrading to a suitable version of Qt5 instead of advising to wait for a Qt bug to be fixed.
Diffstat (limited to 'mesonbuild/modules/qt5.py')
-rw-r--r--mesonbuild/modules/qt5.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/mesonbuild/modules/qt5.py b/mesonbuild/modules/qt5.py
index 244a217..873c2db 100644
--- a/mesonbuild/modules/qt5.py
+++ b/mesonbuild/modules/qt5.py
@@ -12,7 +12,6 @@
# See the License for the specific language governing permissions and
# limitations under the License.
-from .. import mlog
from .qt import QtBaseModule
@@ -23,6 +22,4 @@ class Qt5Module(QtBaseModule):
def initialize(*args, **kwargs):
- mlog.warning('rcc dependencies will not work reliably until this upstream issue is fixed:',
- mlog.bold('https://bugreports.qt.io/browse/QTBUG-45460'), fatal=False)
return Qt5Module(*args, **kwargs)