mirror of
https://git.proxmox.com/git/fwupd
synced 2025-05-24 19:55:20 +00:00

The ColorHug plugin was the very first plugin for fwupd, and it's not been ported to use all the various helpers used in other USB plugins. It shows. This gets rid of a lot of complexity and makes the plugin more reliable.
21 lines
424 B
Meson
21 lines
424 B
Meson
cargs = ['-DG_LOG_DOMAIN="FuPluginColorHug"']
|
|
|
|
shared_module('fu_plugin_colorhug',
|
|
sources : [
|
|
'fu-colorhug-device.c',
|
|
'fu-plugin-colorhug.c',
|
|
],
|
|
include_directories : [
|
|
include_directories('../..'),
|
|
include_directories('../../src'),
|
|
include_directories('../../libfwupd'),
|
|
],
|
|
install : true,
|
|
install_dir: plugin_dir,
|
|
c_args : cargs,
|
|
dependencies : [
|
|
plugin_deps,
|
|
colorhug,
|
|
],
|
|
)
|