aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2013-04-17 19:54:04 +0300
committerJussi Pakkanen <jpakkane@gmail.com>2013-04-17 19:54:04 +0300
commitabe653e808a67d962054c70e56d632a0215a3fd2 (patch)
treeadd4c116eef3dadc88214583dbea714fd72da75b
parent124b5cc3929f7ae520cdc29e58f60fd0ade65a5b (diff)
downloadmeson-abe653e808a67d962054c70e56d632a0215a3fd2.zip
meson-abe653e808a67d962054c70e56d632a0215a3fd2.tar.gz
meson-abe653e808a67d962054c70e56d632a0215a3fd2.tar.bz2
Some comments to Qt5 sample.
-rw-r--r--test cases/frameworks/4 qt5/meson.build6
1 files changed, 3 insertions, 3 deletions
diff --git a/test cases/frameworks/4 qt5/meson.build b/test cases/frameworks/4 qt5/meson.build
index 6431278..edef7d6 100644
--- a/test cases/frameworks/4 qt5/meson.build
+++ b/test cases/frameworks/4 qt5/meson.build
@@ -3,9 +3,9 @@ project('qt5 build test', 'cxx')
qt5dep = find_dep('qt5', modules : 'Widgets', required : true)
q5exe = executable('qt5test',
-sources : ['main.cpp', 'mainWindow.cpp'],
-moc_headers : ['mainWindow.h'],
-ui_files : 'mainWindow.ui',
+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.
deps : qt5dep)
add_test('qt5test', q5exe)