aboutsummaryrefslogtreecommitdiff
path: root/test cases/frameworks
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2014-04-07 21:28:10 +0300
committerJussi Pakkanen <jpakkane@gmail.com>2014-04-07 21:28:10 +0300
commitf23a5a115089346f349643e86241fc08b0684f9b (patch)
treef11b69d7081e7188c4d158d07e690cea9451ec65 /test cases/frameworks
parent1d36109002cc5ce79b1627cceae7bc3a1e28e113 (diff)
downloadmeson-f23a5a115089346f349643e86241fc08b0684f9b.zip
meson-f23a5a115089346f349643e86241fc08b0684f9b.tar.gz
meson-f23a5a115089346f349643e86241fc08b0684f9b.tar.bz2
Write generator deps to Ninja files properly. Now can compile 1300+ files of QtCreator without dependency problems.
Diffstat (limited to 'test cases/frameworks')
-rw-r--r--test cases/frameworks/4 qt5/meson.build4
1 files changed, 2 insertions, 2 deletions
diff --git a/test cases/frameworks/4 qt5/meson.build b/test cases/frameworks/4 qt5/meson.build
index 2eefafd..53bf1a8 100644
--- a/test cases/frameworks/4 qt5/meson.build
+++ b/test cases/frameworks/4 qt5/meson.build
@@ -4,8 +4,8 @@ qt5dep = dependency('qt5', modules : 'Widgets')
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.
+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.
deps : qt5dep)