fwupd/plugins/colorhug/meson.build
Richard Hughes ec6456e785 colorhug: Make a much better plugin
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.
2017-11-24 10:48:29 +00:00

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,
],
)