mirror of
https://git.proxmox.com/git/fwupd
synced 2025-05-11 01:17:17 +00:00
15 lines
348 B
Meson
15 lines
348 B
Meson
if get_option('tests')
|
|
tar = find_program('tar')
|
|
builder_test_firmware = custom_target('builder-test-firmware',
|
|
input : [
|
|
'source.bin',
|
|
'startup.sh',
|
|
],
|
|
output : 'firmware.tar',
|
|
command : [
|
|
tar, '--xform', 's,.*/,,',
|
|
'--absolute-names', '--create', '--file', '@OUTPUT@', '@INPUT@',
|
|
],
|
|
)
|
|
endif
|