summaryrefslogtreecommitdiff
path: root/libs/cpp-httplib/meson_options.txt
diff options
context:
space:
mode:
authorAldrik Ramaekers <aldrikboy@gmail.com>2025-09-27 18:38:35 +0200
committerAldrik Ramaekers <aldrikboy@gmail.com>2025-09-27 18:38:35 +0200
commitd8c4d84dc75300c6d4d8b0adceafa33741960b92 (patch)
tree00e2dfcc5c836d62fccff76c862e6ec3b0a74db8 /libs/cpp-httplib/meson_options.txt
parentfa088bb60692ba02d30d39affa9a31d9e2b688e2 (diff)
added http lib, working on AI invoice importing
Diffstat (limited to 'libs/cpp-httplib/meson_options.txt')
-rw-r--r--libs/cpp-httplib/meson_options.txt20
1 files changed, 20 insertions, 0 deletions
diff --git a/libs/cpp-httplib/meson_options.txt b/libs/cpp-httplib/meson_options.txt
new file mode 100644
index 0000000..deff537
--- /dev/null
+++ b/libs/cpp-httplib/meson_options.txt
@@ -0,0 +1,20 @@
+# SPDX-FileCopyrightText: 2021 Andrea Pappacoda
+#
+# SPDX-License-Identifier: MIT
+
+option('openssl', type: 'feature', value: 'auto', description: 'Enable OpenSSL support')
+option('zlib', type: 'feature', value: 'auto', description: 'Enable zlib support')
+option('brotli', type: 'feature', value: 'auto', description: 'Enable Brotli support')
+option('macosx_keychain', type: 'feature', value: 'auto', description: 'Enable loading certs from the Keychain on Apple devices')
+option('non_blocking_getaddrinfo', type: 'feature', value: 'auto', description: 'Enable asynchronous name lookup')
+option('compile', type: 'boolean', value: false, description: 'Split the header into a compilable header & source file (requires python3)')
+option('test', type: 'boolean', value: false, description: 'Build tests')
+
+# Old option names
+option('cpp-httplib_openssl', type: 'feature', deprecated: 'openssl')
+option('cpp-httplib_zlib', type: 'feature', deprecated: 'zlib')
+option('cpp-httplib_brotli', type: 'feature', deprecated: 'brotli')
+option('cpp-httplib_macosx_keychain', type: 'feature', deprecated: 'macosx_keychain')
+option('cpp-httplib_non_blocking_getaddrinfo', type: 'feature', deprecated: 'non_blocking_getaddrinfo')
+option('cpp-httplib_compile', type: 'boolean', value: false, deprecated: 'compile')
+option('cpp-httplib_test', type: 'boolean', value: false, deprecated: 'test')