meson_options.txt 766 B

12345678910
  1. # SPDX-FileCopyrightText: 2021 Andrea Pappacoda
  2. #
  3. # SPDX-License-Identifier: MIT
  4. option('cpp-httplib_openssl', type: 'feature', value: 'auto', description: 'Enable OpenSSL support')
  5. option('cpp-httplib_zlib', type: 'feature', value: 'auto', description: 'Enable zlib support')
  6. option('cpp-httplib_brotli', type: 'feature', value: 'auto', description: 'Enable Brotli support')
  7. option('cpp-httplib_macosx_keychain', type: 'feature', value: 'auto', description: 'Enable loading certs from the Keychain on Apple devices')
  8. option('cpp-httplib_compile', type: 'boolean', value: false, description: 'Split the header into a compilable header & source file (requires python3)')
  9. option('cpp-httplib_test', type: 'boolean', value: false, description: 'Build tests')