fwupd/plugins/meson.build
Richard Hughes 1b090802f3 usb: Disable the fallback USB plugin
It's not super useful. If this has no bad effects for a couple of releases we
can either remove it completely or move the functionality to the test plugin.
2017-09-05 18:08:29 +01:00

39 lines
572 B
Meson

subdir('altos')
subdir('dfu')
subdir('ebitdo')
subdir('raspberrypi')
subdir('steelseries')
subdir('test')
subdir('udev')
subdir('unifying')
subdir('upower')
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