fwupd/plugins/altos/meson.build
Richard Hughes 53237d26a1 Remove the ELF support from libdfu and move the code to the altos plugin
This was a mistake originally for two reasons:

 * The only device to use ELF as a deliverable is the altos devices
 * ELF has nothing to do with the DFU specification

This moves the code to where it belongs.
2017-09-07 18:39:23 +01:00

47 lines
857 B
Meson

cargs = ['-DG_LOG_DOMAIN="FuPluginAltos"']
shared_module('fu_plugin_altos',
sources : [
'fu-altos-firmware.c',
'fu-plugin-altos.c',
'fu-device-altos.c',
],
include_directories : [
include_directories('../..'),
include_directories('../../src'),
include_directories('../../libfwupd'),
],
install : true,
install_dir: plugin_dir,
c_args : cargs,
dependencies : [
gudev,
libelf,
plugin_deps,
],
)
executable(
'fu-altos-tool',
sources : [
'fu-altos-firmware.c',
'fu-altos-tool.c',
'fu-device-altos.c',
],
include_directories : [
include_directories('../..'),
include_directories('../../libfwupd'),
include_directories('../../src'),
],
dependencies : [
gudev,
libelf,
plugin_deps,
],
link_with : [
fwupd,
libfwupdprivate,
],
c_args : cargs,
)