mirror of
https://git.proxmox.com/git/fwupd
synced 2025-08-03 19:59:26 +00:00

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.
17 lines
427 B
Meson
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
|