fwupd/plugins/tpm/meson.build
Richard Hughes fbb677bee2 Add a new plugin that exposes the system TPM device firmware version
This plugin does not yet allow the device to be upgraded, and is provided for
information only.
2019-12-05 21:05:17 +00:00

32 lines
501 B
Meson

cargs = ['-DG_LOG_DOMAIN="FuPluginTpm"']
install_data([
'tpm.quirk',
],
install_dir: join_paths(datadir, 'fwupd', 'quirks.d')
)
shared_module('fu_plugin_tpm',
fu_hash,
sources : [
'fu-plugin-tpm.c',
'fu-tpm-device.c',
],
include_directories : [
root_incdir,
fwupd_incdir,
fwupdplugin_incdir,
],
install : true,
install_dir: plugin_dir,
link_with : [
fwupdplugin,
fwupd,
],
c_args : cargs,
dependencies : [
plugin_deps,
tpm2tss,
],
)