aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/modules/qt5.py
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2017-01-06 19:22:56 +0200
committerJussi Pakkanen <jpakkane@gmail.com>2017-01-06 19:22:56 +0200
commit570c9b150b9c604b3c221d7684a5cee3494d3d7a (patch)
treec2c304b2e052fd3d09622a1313ba2afa95b4b9e8 /mesonbuild/modules/qt5.py
parentde24fddbd149d465dc737d707fed204bdf8d06cc (diff)
downloadmeson-570c9b150b9c604b3c221d7684a5cee3494d3d7a.zip
meson-570c9b150b9c604b3c221d7684a5cee3494d3d7a.tar.gz
meson-570c9b150b9c604b3c221d7684a5cee3494d3d7a.tar.bz2
Fix a few more modules.
Diffstat (limited to 'mesonbuild/modules/qt5.py')
-rw-r--r--mesonbuild/modules/qt5.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/mesonbuild/modules/qt5.py b/mesonbuild/modules/qt5.py
index 2e348db..53f1cb5 100644
--- a/mesonbuild/modules/qt5.py
+++ b/mesonbuild/modules/qt5.py
@@ -18,6 +18,7 @@ from .. import build
from ..mesonlib import MesonException, Popen_safe
from ..dependencies import Qt5Dependency
import xml.etree.ElementTree as ET
+from . import ModuleReturnValue
class Qt5Module():
tools_detected = False
@@ -159,7 +160,7 @@ class Qt5Module():
moc_gen = build.Generator([self.moc], moc_kwargs)
moc_output = moc_gen.process_files('Qt5 moc source', moc_sources, state)
sources.append(moc_output)
- return sources
+ return ModuleReturnValue(sources, sources)
def initialize():
mlog.warning('rcc dependencies will not work reliably until this upstream issue is fixed:',