Some comments to Qt5 sample.

This commit is contained in:
Jussi Pakkanen 2013-04-17 19:54:04 +03:00
parent 124b5cc392
commit abe653e808
1 changed files with 3 additions and 3 deletions

View File

@ -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)