diff options
author | Ernestas Kulik <ernestask@src.gnome.org> | 2016-09-28 09:16:11 +0300 |
---|---|---|
committer | Ernestas Kulik <ernestask@src.gnome.org> | 2017-02-24 00:24:27 +0200 |
commit | ed5652c89ac0654df2e82b54b00b27d51c825465 (patch) | |
tree | fa5f60a817818116e871c12a69ebcf73bbf2721f /meson_options.txt | |
parent | 728300331dc5caa6142704e0e4cd70004bf0037a (diff) | |
download | nautilus-ed5652c89ac0654df2e82b54b00b27d51c825465.tar.gz |
general: add support for Meson
Since it’s 2017 already, Nautilus should use a build system that doesn’t
take longer to set up the build than it takes to actually build. An
observed build time using Ninja of roughly one-fifth of what it took
Autotools is more than reason enough to add support for Meson. Along
with that, this commit adds a convenience script to generate a tarball
for releases, since we use libgd as a submodule and Meson does not
handle source distributions.
https://bugzilla.gnome.org/show_bug.cgi?id=778167
Diffstat (limited to 'meson_options.txt')
-rw-r--r-- | meson_options.txt | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/meson_options.txt b/meson_options.txt new file mode 100644 index 000000000..99d198907 --- /dev/null +++ b/meson_options.txt @@ -0,0 +1,32 @@ +option ('enable-profiling', + type: 'boolean', + value: false) +option ('enable-nst-extension', + type: 'boolean', + value: true) +option ('enable-exif', + type: 'boolean', + value: false, + description: 'enable EXIF support') +option ('enable-xmp', + type: 'boolean', + value: false, + description: 'enable XMP support') +option ('enable-selinux', + type: 'boolean', + value: true) +option ('enable-empty-view', + type: 'boolean', + value: false) +option ('enable-desktop', + type: 'boolean', + value: true) +option ('enable-packagekit', + type: 'boolean', + value: true) +option ('enable-tracker', + type: 'boolean', + value: true) +option ('enable-update-mimedb', + type: 'boolean', + value: true) |