fwupd/data/tests/missing-hwid/meson.build
Richard Hughes bc3a4e1f57 Store firmware update success and failure to a local database
Rename FuPending to FuHistory to better represent what the object is now doing.
Also, while we're here, switch to using SQLite prepared statements to avoid a
possible invalid read on i386 hardware.
2018-01-11 09:59:34 +00:00

24 lines
575 B
Meson

gcab = find_program('gcab', required : false)
if gcab.found()
hwid_test_firmware = custom_target('hwid-test-firmware',
input : [
'firmware.bin',
'firmware.metainfo.xml',
],
output : 'hwid-1.2.3.cab',
command : [
gcab, '--create', '--nopath', '@OUTPUT@', '@INPUT@',
],
)
noreqs_test_firmware = custom_target('noreqs-test-firmware',
input : [
'firmware.bin',
'firmware2.metainfo.xml',
],
output : 'noreqs-1.2.3.cab',
command : [
gcab, '--create', '--nopath', '@OUTPUT@', '@INPUT@',
],
)
endif