fwupd/plugins/thelio-io/meson.build
Richard Hughes 59593b0c50 thelio-io: Add a plugin to detach the Thelio IO board
This does not use the DFU runtime to detach.
2019-09-25 16:05:32 +01:00

28 lines
559 B
Meson

cargs = ['-DG_LOG_DOMAIN="FuPluginThelioIo"']
install_data(['thelio-io.quirk'],
install_dir: join_paths(datadir, 'fwupd', 'quirks.d')
)
shared_module('fu_plugin_thelio_io',
fu_hash,
sources : [
'fu-plugin-thelio-io.c',
'fu-thelio-io-device.c',
],
include_directories : [
include_directories('../..'),
include_directories('../../src'),
include_directories('../../libfwupd'),
],
install : true,
install_dir: plugin_dir,
link_with : [
libfwupdprivate,
],
c_args : cargs,
dependencies : [
plugin_deps,
],
)