fwupd/plugins/cfu/meson.build
Richard Hughes 8e24fa77cf cfu: Add an initial outline CFU plugin
There's no actual hardware to test this against yet, but this is how I
would lay out a plugin if there was.

We still need to work out a generic encapsulation for the offer and
payload (for each component and bank) so this can work with LVFS and
fwupd.
2021-10-15 18:38:36 +01:00

32 lines
511 B
Meson

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