1
0

meson_options.txt 1.4 KB

1234567891011121314151617181920
  1. # SPDX-FileCopyrightText: 2021 Andrea Pappacoda
  2. #
  3. # SPDX-License-Identifier: MIT
  4. option('openssl', type: 'feature', value: 'auto', description: 'Enable OpenSSL support')
  5. option('zlib', type: 'feature', value: 'auto', description: 'Enable zlib support')
  6. option('brotli', type: 'feature', value: 'auto', description: 'Enable Brotli support')
  7. option('macosx_keychain', type: 'feature', value: 'auto', description: 'Enable loading certs from the Keychain on Apple devices')
  8. option('non_blocking_getaddrinfo', type: 'feature', value: 'auto', description: 'Enable asynchronous name lookup')
  9. option('compile', type: 'boolean', value: false, description: 'Split the header into a compilable header & source file (requires python3)')
  10. option('test', type: 'boolean', value: false, description: 'Build tests')
  11. # Old option names
  12. option('cpp-httplib_openssl', type: 'feature', deprecated: 'openssl')
  13. option('cpp-httplib_zlib', type: 'feature', deprecated: 'zlib')
  14. option('cpp-httplib_brotli', type: 'feature', deprecated: 'brotli')
  15. option('cpp-httplib_macosx_keychain', type: 'feature', deprecated: 'macosx_keychain')
  16. option('cpp-httplib_non_blocking_getaddrinfo', type: 'feature', deprecated: 'non_blocking_getaddrinfo')
  17. option('cpp-httplib_compile', type: 'boolean', value: false, deprecated: 'compile')
  18. option('cpp-httplib_test', type: 'boolean', value: false, deprecated: 'test')