mirror of
https://git.proxmox.com/git/fwupd
synced 2025-06-29 14:21:32 +00:00
18 lines
411 B
Meson
18 lines
411 B
Meson
if gusb.found()
|
|
cargs = ['-DG_LOG_DOMAIN="FuPluginAnalogix"']
|
|
|
|
plugin_quirks += files('analogix.quirk')
|
|
plugin_builtins += static_library('fu_plugin_analogix',
|
|
sources: [
|
|
'fu-analogix-plugin.c',
|
|
'fu-analogix-device.c',
|
|
'fu-analogix-common.c',
|
|
'fu-analogix-firmware.c',
|
|
],
|
|
include_directories: plugin_incdirs,
|
|
link_with: plugin_libs,
|
|
c_args: cargs,
|
|
dependencies: plugin_deps,
|
|
)
|
|
endif
|