The Meson Build System
http://mesonbuild.com/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
275 B
13 lines
275 B
12 years ago
|
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',
|
||
|
deps : qt5dep\
|
||
|
)
|
||
|
|
||
|
add_test('qt5test', q5exe)
|