summaryrefslogtreecommitdiff
path: root/meson_options.txt
diff options
context:
space:
mode:
authorNiels De Graef <nielsdegraef@gmail.com>2018-03-20 22:03:56 +0100
committerNiels De Graef <nielsdegraef@gmail.com>2019-01-19 21:03:56 +0000
commitb19c30909640841e39a764c83afab4a688fe4a52 (patch)
treea14ef8e4edb8eec42ec2e0dedf6331d608bc28ed /meson_options.txt
parentbe0a1263998841727deb62f3674a64adcc31dcef (diff)
downloadlibsecret-b19c30909640841e39a764c83afab4a688fe4a52.tar.gz
Add build support for Meson
To build with meson, use the following commands: ``` $ meson build $ ninja -C build # in case you want to install $ ninja -C build install ```
Diffstat (limited to 'meson_options.txt')
-rw-r--r--meson_options.txt5
1 files changed, 5 insertions, 0 deletions
diff --git a/meson_options.txt b/meson_options.txt
new file mode 100644
index 0000000..c1fda5d
--- /dev/null
+++ b/meson_options.txt
@@ -0,0 +1,5 @@
+option('manpage', type: 'boolean', value: true, description: 'Build man pages')
+option('gcrypt', type: 'boolean', value: true, description: 'With gcrypt and transport encryption')
+option('debugging', type: 'boolean', value: false, description: 'Turn debugging on/off')
+option('vapi', type: 'boolean', value: true, description: 'Create VAPI file.')
+option('gtk_doc', type: 'boolean', value: true, description: 'Build reference documentation using gtk-doc')