From f5377d5fdcdb0a3bbc292335103a9fcd791e97ea Mon Sep 17 00:00:00 2001 From: Martin Blanchard Date: Tue, 29 May 2018 23:13:34 +0100 Subject: Port to meson build system The meson build system focuses on speed an ease of use, which helps speeding up the software development. https://bugzilla.gnome.org/show_bug.cgi?id=794324 https://gitlab.gnome.org/GNOME/libchamplain/issues/37 Closes #37 --- meson_options.txt | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 meson_options.txt (limited to 'meson_options.txt') diff --git a/meson_options.txt b/meson_options.txt new file mode 100644 index 0000000..8713d62 --- /dev/null +++ b/meson_options.txt @@ -0,0 +1,22 @@ +option('memphis', + type: 'boolean', value: false, + description: 'Enable Memphis support (requires libmemphis)') + +option('introspection', + type: 'boolean', value: true, + description: 'Generate introspection data (requires gobject-introspection)') +option('vapi', + type: 'boolean', value: true, + description: 'Generate vapi data (requires vapigen)') + +option('widgetry', + type: 'boolean', value: true, + description: 'Build GTK+ widgetry') + +option('gtk_doc', + type: 'boolean', value: false, + description: 'Build reference manual (requires gtk-doc)') + +option('demos', + type: 'boolean', value: false, + description: 'Build demonstration programs') -- cgit v1.2.1