fwupd/contrib/ci/qt5-thread-test/meson.build
Mario Limonciello d432161143 Add a CI tester for running libfwupd with QT threads
This only runs on Arch to avoid giving the extra dependencies to all
the distro CI builds.
2020-12-07 09:18:18 -06:00

24 lines
483 B
Meson

project('qt5-thread-test', 'cpp',
license : 'LGPL-2.1+',
)
add_project_arguments('-fPIC', language : 'cpp')
qt5core = dependency('Qt5Core')
qt5concurrent = dependency('Qt5Concurrent')
glib2 = dependency('glib-2.0')
gio2 = dependency('gio-2.0')
fwupd = dependency('fwupd')
e = executable(
'qt-thread-test',
sources : [
'qt-thread-test.cpp'
],
dependencies : [
qt5core,
qt5concurrent,
glib2,
gio2,
fwupd,
],
)
test('qt-thread-test', e, timeout: 60)