fwupd/plugins/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

42 lines
609 B
Meson

subdir('dfu')
subdir('ebitdo')
subdir('raspberrypi')
subdir('steelseries')
subdir('test')
subdir('udev')
subdir('unifying')
subdir('upower')
if get_option('enable-altos')
subdir('altos')
endif
if get_option('enable-amt')
subdir('amt')
endif
if get_option('enable-thunderbolt') and udev.found()
subdir('thunderbolt')
endif
if get_option('enable-colorhug')
subdir('colorhug')
endif
if get_option('enable-dell')
subdir('dell')
endif
if get_option('enable-synaptics')
subdir('synapticsmst')
endif
if get_option('enable-uefi')
subdir('uefi')
endif
if get_option('enable-usb-fallback')
subdir('usb')
endif