mirror of
https://git.proxmox.com/git/fwupd
synced 2025-07-27 00:19:13 +00:00

Automake and autoconf are impossible to fully understand and Meson now provides everything we need for a much smaller, faster, and more understandable build. See http://mesonbuild.com/ for more information.
29 lines
421 B
Meson
29 lines
421 B
Meson
subdir('altos')
|
|
subdir('dfu')
|
|
subdir('ebitdo')
|
|
subdir('raspberrypi')
|
|
subdir('steelseries')
|
|
subdir('test')
|
|
subdir('udev')
|
|
subdir('unifying')
|
|
subdir('upower')
|
|
subdir('usb')
|
|
|
|
if get_option('enable-thunderbolt')
|
|
subdir('thunderbolt')
|
|
endif
|
|
|
|
if get_option('enable-colorhug')
|
|
subdir('colorhug')
|
|
endif
|
|
|
|
if get_option('enable-dell')
|
|
subdir('dell')
|
|
subdir('synapticsmst')
|
|
endif
|
|
|
|
if get_option('enable-uefi')
|
|
subdir('uefi')
|
|
endif
|
|
|