Files
librist_sender07/meson_options.txt
Sergio Ammirata 3f1dda2338 feat(advanced): LZ4 payload compression for Advanced Profile
Sender compresses payload with LZ4 before encryption (LPC=1),
receiver decompresses after decryption.  Controlled by the
existing ?compression=1 URL parameter; receiver auto-detects
via the LPC header field.

Bundled LZ4 v1.10.0 in contrib/lz4/ with system-library fallback.
2026-05-29 17:02:45 -04:00

14 lines
722 B
Meson

option('static_analyze', type : 'boolean', value : false)
option('test', type : 'boolean', value : true)
option('builtin_lz4', type: 'boolean', value: false)
option('builtin_cjson', type: 'boolean', value: false)
option('builtin_mbedtls', type: 'boolean', value: false)
option('built_tools', type: 'boolean', value: true)
option('fallback_builtin', type: 'boolean', value: true)
option('use_mbedtls', type: 'boolean', value: true)
option('use_nettle', type: 'boolean', value: false)
option('use_gnutls', type: 'boolean', value: false)
option('have_mingw_pthreads', type: 'boolean', value: false)
option('allow_insecure_iv_fallback', type: 'boolean', value: false)
option('allow_obj_filter', type: 'boolean', value: false)