fwupd/plugins/uefi-pk/meson.build
Richard Hughes 06800069d4 Split out FuUefiPkDevice as a device for future use
This does not serve much purpose now, but would be useful if we need to know
more about the installed PK from other plugins. If nothing else it makes the
`--verbose` output more helpful.
2022-10-20 13:52:22 +01:00

17 lines
427 B
Meson

if hsi and \
get_option('plugin_uefi_pk').require(gnutls.found(),
error_message: 'gnutls is needed for plugin_uefi_pk').allowed()
cargs = ['-DG_LOG_DOMAIN="FuPluginUefiPk"']
plugin_builtins += static_library('fu_plugin_uefi_pk',
sources: [
'fu-uefi-pk-device.c',
'fu-uefi-pk-plugin.c',
],
include_directories: plugin_incdirs,
link_with: plugin_libs,
c_args: cargs,
dependencies: plugin_deps,
)
endif