From 7f358c676ba0990421d6a038569c8b798353e52b Mon Sep 17 00:00:00 2001 From: Martin Blanchard Date: Thu, 30 May 2019 13:55:45 +0200 Subject: build: Port to the Meson build system Introduce meson build scripts along autotools ones. Porting modules to the meson build system is a GNOME Goal, details here: https://wiki.gnome.org/Initiatives/GnomeGoals/MesonPorting https://github.com/hughsie/colord-gtk/issues/10 --- meson_options.txt | 5 +++++ 1 file changed, 5 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..1c3cecc --- /dev/null +++ b/meson_options.txt @@ -0,0 +1,5 @@ +option('gtk2', type : 'boolean', value : false, description : 'Build Gtk2 library') +option('vapi', type : 'boolean', value : false, description : 'Build vala bindings') +option('tests', type : 'boolean', value : true, description : 'Build self tests') +option('man', type : 'boolean', value : true, description : 'Generate man pages') +option('docs', type : 'boolean', value : true, description : 'Generate documentation') -- cgit v1.2.1