mirror of
https://git.proxmox.com/git/fwupd
synced 2025-05-22 10:51:01 +00:00
32 lines
589 B
Meson
32 lines
589 B
Meson
cargs = ['-DG_LOG_DOMAIN="FuPluginWacomRaw"']
|
|
|
|
install_data(['wacom-raw.quirk'],
|
|
install_dir: join_paths(datadir, 'fwupd', 'quirks.d')
|
|
)
|
|
|
|
shared_module('fu_plugin_wacom_raw',
|
|
fu_hash,
|
|
sources : [
|
|
'fu-plugin-wacom-raw.c',
|
|
'fu-wacom-common.c',
|
|
'fu-wacom-device.c',
|
|
'fu-wacom-aes-device.c',
|
|
'fu-wacom-emr-device.c',
|
|
],
|
|
include_directories : [
|
|
root_incdir,
|
|
fwupd_incdir,
|
|
fwupdplugin_incdir,
|
|
],
|
|
install : true,
|
|
install_dir: plugin_dir,
|
|
c_args : cargs,
|
|
dependencies : [
|
|
plugin_deps,
|
|
],
|
|
link_with : [
|
|
fwupd,
|
|
fwupdplugin,
|
|
],
|
|
)
|