diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2014-04-16 22:38:29 +0300 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2014-04-16 22:38:29 +0300 |
commit | c21637a01db7f6958c816bfe2a8b0383b96e8f68 (patch) | |
tree | 682774f314499b0951e0adf01d3af638025f700d /test cases/frameworks/4 qt5/meson.build | |
parent | 4c02a35fe067d24ce97207a702dd2e46f2203849 (diff) | |
download | meson-c21637a01db7f6958c816bfe2a8b0383b96e8f68.zip meson-c21637a01db7f6958c816bfe2a8b0383b96e8f68.tar.gz meson-c21637a01db7f6958c816bfe2a8b0383b96e8f68.tar.bz2 |
Fixed unity builds for Qt5.
Diffstat (limited to 'test cases/frameworks/4 qt5/meson.build')
-rw-r--r-- | test cases/frameworks/4 qt5/meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test cases/frameworks/4 qt5/meson.build b/test cases/frameworks/4 qt5/meson.build index 3f0770e..cda27ae 100644 --- a/test cases/frameworks/4 qt5/meson.build +++ b/test cases/frameworks/4 qt5/meson.build @@ -6,7 +6,7 @@ q5exe = executable('qt5app', sources : ['main.cpp', 'mainWindow.cpp'], # Sources that don't need preprocessing. moc_headers : ['mainWindow.h'], # These need to be fed through the moc tool before use. ui_files : 'mainWindow.ui', # XML files that need to be compiled with the uic tol. -qresources : ['stuff.qrc', 'stuff2.qrc'], # Resource files for rcc compiler. +qresources : 'stuff.qrc', # Resource file for rcc compiler. deps : qt5dep) # We need a console test application because some test environments |