summaryrefslogtreecommitdiff
path: root/meson_options.txt
diff options
context:
space:
mode:
Diffstat (limited to 'meson_options.txt')
-rw-r--r--meson_options.txt83
1 files changed, 83 insertions, 0 deletions
diff --git a/meson_options.txt b/meson_options.txt
new file mode 100644
index 0000000..9e3e9bd
--- /dev/null
+++ b/meson_options.txt
@@ -0,0 +1,83 @@
+option(
+ 'docs',
+ type: 'boolean',
+ value: true,
+ description: 'Whether to generate the API reference for libproxy'
+)
+
+option(
+ 'tests',
+ type: 'boolean',
+ value: true,
+ description: 'Whether to compile test cases for libproxy'
+)
+
+option(
+ 'config-env',
+ type: 'boolean',
+ value: true,
+ description: 'Whether to build support for environment configuration'
+)
+
+option(
+ 'config-gnome',
+ type: 'boolean',
+ value: true,
+ description: 'Whether to build support for GNOME configuration'
+)
+
+option(
+ 'config-windows',
+ type: 'boolean',
+ value: true,
+ description: 'Whether to build support for Windows configuration'
+)
+
+option(
+ 'config-sysconfig',
+ type: 'boolean',
+ value: true,
+ description: 'Whether to build support for sysconfig configuration'
+)
+
+option(
+ 'config-osx',
+ type: 'boolean',
+ value: true,
+ description: 'Whether to build support for OS X configuration'
+)
+
+option(
+ 'config-kde',
+ type: 'boolean',
+ value: true,
+ description: 'Whether to build support for KDE System Settings'
+)
+
+option(
+ 'pacrunner-duktape',
+ type: 'boolean',
+ value: true,
+ description: 'Whether to build support for PAC Runner Duktape'
+)
+
+option(
+ 'vapi',
+ type: 'boolean',
+ value: true,
+ description: 'Whether to build vapi support'
+)
+
+option(
+ 'curl',
+ type: 'boolean',
+ value: true,
+ description: 'Whether to build cURL support'
+)
+
+option(
+ 'introspection',
+ type: 'boolean',
+ value: true,
+ description: 'Whether to build introspection support'
+)