diff options
author | Iñigo Martínez <inigomartinez@gmail.com> | 2017-07-25 22:28:38 +0200 |
---|---|---|
committer | Georges Basile Stavracas Neto <georges.stavracas@gmail.com> | 2018-01-17 20:09:35 -0200 |
commit | 32edd6789e9d60b1e371660bdbb3c4a0671bd714 (patch) | |
tree | dc6db5385f0dded9a7c3720eaabef14c17e6ec15 /meson_options.txt | |
parent | d7012d033782869be146e876c7f10d451a906058 (diff) | |
download | gnome-control-center-32edd6789e9d60b1e371660bdbb3c4a0671bd714.tar.gz |
build: Port to meson build system
Meson is a build system focused on speed an ease of use, which
helps speeding up the software development. This patch adds meson
support along autotools.
https://bugzilla.gnome.org/show_bug.cgi?id=785414
Diffstat (limited to 'meson_options.txt')
-rw-r--r-- | meson_options.txt | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/meson_options.txt b/meson_options.txt new file mode 100644 index 000000000..9cd9d8895 --- /dev/null +++ b/meson_options.txt @@ -0,0 +1,8 @@ +option('bluetooth', type: 'boolean', value: true, description: 'build with Bluetooth support') +option('cheese', type: 'boolean', value: true, description: 'build with cheese webcam support') +option('documentation', type: 'boolean', value: false, description: 'build documentation') +option('gnome_session_libexecdir', type: 'string', value: '', description: 'Directory for gnome-session\'s libexecdir') +option('ibus', type: 'boolean', value: true, description: 'build with IBus support') +option('network_manager', type: 'boolean', value: true, description: 'build with NetworkManager support') +option('wacom', type: 'boolean', value: true, description: 'build with Wacom support') +option('wayland', type: 'boolean', value: true, description: 'build with Wayland support')
\ No newline at end of file |