meson_options.txt 1.1 KB

123456789101112131415161718
  1. option('debug-logging', type : 'boolean', value : false,
  2. description : 'Enable debug logging in all modules')
  3. option('log-stdout', type : 'boolean', value : false,
  4. description : 'Redirect logging to stdout')
  5. option('log-file', type : 'string', value : '',
  6. description : 'Write logging output into this file')
  7. option('crypto-library', type: 'combo', choices : ['none', 'openssl', 'nss'], value : 'none',
  8. description : 'What external crypto library to leverage, if any (OpenSSL or NSS)')
  9. option('crypto-library-kdf', type : 'feature', value : 'auto',
  10. description : 'Use the external crypto library for Key Derivation Function support')
  11. option('fuzzer', type : 'feature', value : 'disabled',
  12. description : 'Build libsrtp2 fuzzer (requires build with clang)')
  13. option('tests', type : 'feature', value : 'auto', yield : true,
  14. description : 'Build test applications')
  15. option('pcap-tests', type : 'feature', value : 'auto',
  16. description : 'Build test application that require libpcap')
  17. option('doc', type : 'feature', value : 'auto', yield : true,
  18. description : 'Generate API documentation with doxygen')