mirror of
https://git.proxmox.com/git/fwupd
synced 2025-05-15 01:38:22 +00:00

With much help from: * Ricardo Cañuelo <ricardo.canuelo@collabora.com> * Richard Hughes <richard@hughsie.com>
31 lines
564 B
Meson
31 lines
564 B
Meson
cargs = ['-DG_LOG_DOMAIN="FuPluginAnalogix"']
|
|
|
|
install_data(['analogix.quirk'],
|
|
install_dir: join_paths(datadir, 'fwupd', 'quirks.d')
|
|
)
|
|
|
|
shared_module('fu_plugin_analogix',
|
|
fu_hash,
|
|
sources : [
|
|
'fu-plugin-analogix.c',
|
|
'fu-analogix-device.c',
|
|
'fu-analogix-common.c',
|
|
'fu-analogix-firmware.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,
|
|
],
|
|
)
|