blob: a630d73ef5009a4ef00e118f6bff0f8cb41e6024 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
project('qt5 build test', 'cpp')
qt5dep = dependency('qt5', modules : 'Widgets')
q5exe = executable('qt5test',
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)
test('qt5test', q5exe)
|