mirror of
https://git.proxmox.com/git/fwupd
synced 2026-03-28 14:58:22 +00:00
29 lines
480 B
Meson
29 lines
480 B
Meson
if gusb.found()
|
|
cargs = ['-DG_LOG_DOMAIN="FuPluginFpc"']
|
|
|
|
plugin_quirks += join_paths(meson.current_source_dir(), 'fpc.quirk')
|
|
|
|
shared_module('fu_plugin_fpc',
|
|
fu_hash,
|
|
sources: [
|
|
'fu-fpc-device.c',
|
|
'fu-plugin-fpc.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,
|
|
],
|
|
)
|
|
endif
|