加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
meson_options.txt 1.11 KB
一键复制 编辑 原始数据 按行查看 历史
Eli Mallon 提交于 2023-12-06 00:26 . meson.build: implement mbedtls support
option('debug-logging', type : 'boolean', value : false,
description : 'Enable debug logging in all modules')
option('log-stdout', type : 'boolean', value : false,
description : 'Redirect logging to stdout')
option('log-file', type : 'string', value : '',
description : 'Write logging output into this file')
option('crypto-library', type: 'combo', choices : ['none', 'openssl', 'nss', 'mbedtls'], value : 'none',
description : 'What external crypto library to leverage, if any (OpenSSL, NSS, or mbedtls)')
option('crypto-library-kdf', type : 'feature', value : 'auto',
description : 'Use the external crypto library for Key Derivation Function support')
option('fuzzer', type : 'feature', value : 'disabled',
description : 'Build libsrtp2 fuzzer (requires build with clang)')
option('tests', type : 'feature', value : 'auto', yield : true,
description : 'Build test applications')
option('pcap-tests', type : 'feature', value : 'auto',
description : 'Build test application that require libpcap')
option('doc', type : 'feature', value : 'auto', yield : true,
description : 'Generate API documentation with doxygen')
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化