You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
qemu/hw/uefi/meson.build

22 lines
780 B
Meson

system_ss.add(files('hardware-info.c'))
uefi_vars_ss = ss.source_set()
if (config_all_devices.has_key('CONFIG_UEFI_VARS'))
uefi_vars_ss.add(files('var-service-core.c',
'var-service-json.c',
'var-service-vars.c',
'var-service-auth.c',
'var-service-guid.c',
'var-service-utils.c',
'var-service-policy.c',
'var-service-sysbus.c'))
uefi_vars_ss.add(when: gnutls,
if_true: files('var-service-pkcs7.c'),
if_false: files('var-service-pkcs7-stub.c'))
uefi_vars_ss.add(files('var-service-siglist.c'))
endif
modules += { 'hw-uefi' : {
'vars' : uefi_vars_ss,
}}