summaryrefslogtreecommitdiff
path: root/meson_options.txt
diff options
context:
space:
mode:
authorOndrej Holy <oholy@redhat.com>2017-10-26 12:16:35 +0200
committerOndrej Holy <oholy@redhat.com>2017-10-31 18:22:08 +0100
commit4555036dd8442cead116d6aaebd915b2be7f7455 (patch)
tree2db492069eae00ecd7c94155a6055e21d712f07f /meson_options.txt
parent4a042207c1778587807b60d1f6251c979d1501c7 (diff)
downloadgvfs-4555036dd8442cead116d6aaebd915b2be7f7455.tar.gz
build: Reorder meson options and update description
meson_options.txt is hard to read. Let's create sorted groups of options and unify the description. Also change some option names to match correspoding backend names. https://bugzilla.gnome.org/show_bug.cgi?id=786149
Diffstat (limited to 'meson_options.txt')
-rw-r--r--meson_options.txt49
1 files changed, 26 insertions, 23 deletions
diff --git a/meson_options.txt b/meson_options.txt
index ea48b4d7..c7899291 100644
--- a/meson_options.txt
+++ b/meson_options.txt
@@ -1,28 +1,31 @@
option('with-dbus-service-dir', type: 'string', value: '', description: 'choose directory for dbus service files [default=PREFIX/share/dbus-1/services]')
option('with-systemduserunitdir', type: 'string', value: '', description: 'choose directory for systemd user units, or \'no\' to disable [default=PREFIX/lib/systemd/user]')
-option('enable-gcr', type: 'boolean', value: true, description: 'build with gcr')
+
option('enable-admin', type: 'boolean', value: true, description: 'build with admin backend')
-option('enable-http', type: 'boolean', value: true, description: 'build with http/dav backend')
-option('enable-avahi', type: 'boolean', value: true, description: 'build with avahi backend')
-option('enable-udev', type: 'boolean', value: true, description: 'build with libudev')
-option('enable-gudev', type: 'boolean', value: true, description: 'build with gudev support')
-option('enable-fuse', type: 'boolean', value: true, description: 'build with FUSE support')
-option('enable-gdu', type: 'boolean', value: true, description: 'build with GDU volume monitor')
-option('enable-udisks2', type: 'boolean', value: true, description: 'build with libudisks2')
-option('enable-libsystemd-login', type: 'boolean', value: true, description: 'build with libsystemd-login')
-option('enable-afc', type: 'boolean', value: true, description: 'build with AFC backend')
-option('enable-goa', type: 'boolean', value: true, description: 'build with GOA volume monitor')
-option('enable-keyring', type: 'boolean', value: true, description: 'build with GNOME Keyring support')
+option('enable-afc', type: 'boolean', value: true, description: 'build with afc backend and volume monitor')
+option('enable-afp', type: 'boolean', value: true, description: 'build with afp backends')
+option('enable-archive', type: 'boolean', value: true, description: 'build with archive backend')
+option('enable-cdda', type: 'boolean', value: true, description: 'build with cdda backend')
+option('enable-dnssd', type: 'boolean', value: true, description: 'build with dnssd backend')
+option('enable-gdu', type: 'boolean', value: true, description: 'build with gdu volume monitor')
+option('enable-goa', type: 'boolean', value: true, description: 'build with goa volume monitor')
+option('enable-google', type: 'boolean', value: true, description: 'build with google backend')
+option('enable-gphoto2', type: 'boolean', value: true, description: 'build with gphoto2 backend and volume monitor')
+option('enable-http', type: 'boolean', value: true, description: 'build with http/dav backends')
+option('enable-mtp', type: 'boolean', value: true, description: 'build with mtp backend and volume monitor')
+option('enable-nfs', type: 'boolean', value: true, description: 'build with nfs backend')
+option('enable-smb', type: 'boolean', value: true, description: 'build with smb backends')
+option('enable-udisks2', type: 'boolean', value: true, description: 'build with udisks2 volume monitor')
+
option('enable-bluray', type: 'boolean', value: true, description: 'build with bluray metadata support')
-option('enable-libusb', type: 'boolean', value: true, description: 'build with libusb support')
-option('enable-samba', type: 'boolean', value: true, description: 'build with samba support')
-option('enable-archive', type: 'boolean', value: true, description: 'build with archive support')
-option('enable-nfs', type: 'boolean', value: true, description: 'build with NFS support')
-option('enable-cdda', type: 'boolean', value: true, description: 'build with CDDA backend')
-option('enable-google', type: 'boolean', value: true, description: 'build with Google backend')
-option('enable-gphoto2', type: 'boolean', value: true, description: 'build with gphoto2 support')
-option('enable-libmtp', type: 'boolean', value: true, description: 'build with libmtp support')
-option('enable-afp', type: 'boolean', value: true, description: 'build with AFP support')
-option('enable-man', type: 'boolean', value: false, description: 'generate man pages')
-option('enable-devel-utils', type: 'boolean', value: false, description: 'generate development utility programs')
+option('enable-fuse', type: 'boolean', value: true, description: 'build with fuse support')
+option('enable-gcr', type: 'boolean', value: true, description: 'build with gcr certificate support')
+option('enable-gudev', type: 'boolean', value: true, description: 'build with gudev device support')
+option('enable-keyring', type: 'boolean', value: true, description: 'build with keyring support')
+option('enable-libsystemd-login', type: 'boolean', value: true, description: 'build with logind support')
+option('enable-libusb', type: 'boolean', value: true, description: 'build with libusb interruption support')
+option('enable-udev', type: 'boolean', value: true, description: 'build with libudev device support')
+
+option('enable-devel-utils', type: 'boolean', value: false, description: 'build with development utility programs')
option('enable-installed-tests', type: 'boolean', value: false, description: 'enable installed unit tests')
+option('enable-man', type: 'boolean', value: false, description: 'generate man pages')