mirror of
https://git.proxmox.com/git/fwupd
synced 2025-08-05 02:54:45 +00:00

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.
24 lines
2.3 KiB
Meson
24 lines
2.3 KiB
Meson
option('enable-doc', type : 'boolean', value : true, description : 'enable developer documentation')
|
|
option('enable-introspection', type : 'boolean', value : true, description : 'generate GObject Introspection data')
|
|
option('enable-man', type : 'boolean', value : true, description : 'enable man pages')
|
|
option('enable-tests', type : 'boolean', value : true, description : 'enable tests')
|
|
option('enable-lvfs', type : 'boolean', value : true, description : 'enable LVFS remotes')
|
|
option('enable-colorhug', type : 'boolean', value : true, description : 'enable ColorHug support')
|
|
option('enable-altos', type : 'boolean', value : true, description : 'enable altos support')
|
|
option('enable-usb-fallback', type : 'boolean', value : false, description : 'enable USB fallback support')
|
|
option('enable-uefi', type : 'boolean', value : true, description : 'enable UEFI support')
|
|
option('enable-uefi-labels', type : 'boolean', value : true, description : 'enable UEFI labels support')
|
|
option('enable-dell', type : 'boolean', value : true, description : 'enable Dell-specific support')
|
|
option('enable-amt', type : 'boolean', value : true, description : 'enable Intel AMT support')
|
|
option('enable-thunderbolt', type : 'boolean', value : true, description : 'enable Thunderbolt support')
|
|
option('enable-synaptics', type: 'boolean', value: true, description : 'enable Synaptics MST hub support')
|
|
option('enable-systemd', type : 'boolean', value : true, description : 'enable systemd support')
|
|
option('enable-consolekit', type : 'boolean', value : true, description : 'enable ConsoleKit support')
|
|
option('enable-dummy', type : 'boolean', value : false, description : 'enable the dummy device')
|
|
option('enable-gpg', type : 'boolean', value : true, description : 'enable the GPG verification support')
|
|
option('enable-pkcs7', type : 'boolean', value : true, description : 'enable the PKCS7 verification support')
|
|
option('enable-werror', type : 'boolean', value : true, description : 'build with -Werror (only for CI!)')
|
|
option('with-bootdir', type : 'string', value : '/boot/efi', description : 'Directory for EFI system partition')
|
|
option('with-systemdunitdir', type: 'string', value: '', description: 'Directory for systemd units')
|
|
option('with-udevdir', type: 'string', value: '', description: 'Directory for udev rules')
|