diff options
author | hrxi <hrrrxi@gmail.com> | 2023-09-30 03:05:11 +0200 |
---|---|---|
committer | fiaxh <fiaxh@users.noreply.github.com> | 2023-10-06 15:25:12 +0200 |
commit | a55a10e88f88a4650aa6a83927ea38960aa26935 (patch) | |
tree | cd280cd13abf0fac8ffc37fdc8af0fd1f12f6231 /meson.build | |
parent | bfc1962f70cebdd2933218052a172bed73d06fb9 (diff) | |
download | dino-a55a10e88f88a4650aa6a83927ea38960aa26935.tar.gz dino-a55a10e88f88a4650aa6a83927ea38960aa26935.zip |
meson: Add RTP options that are also present in the CMakeLists.txt
Diffstat (limited to 'meson.build')
-rw-r--r-- | meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meson.build b/meson.build index 3276158f..4ad18477 100644 --- a/meson.build +++ b/meson.build @@ -52,7 +52,7 @@ dep_libsoup = dependency('libsoup-3.0', disabler: true, required: get_option('pl dep_nice = dependency('nice', version: '>=0.1.15', disabler: true, required: get_option('plugin-ice')) dep_m = meson.get_compiler('c').find_library('m', required: false) dep_sqlite3 = dependency('sqlite3', version: '>=3.24') -dep_webrtc_audio_processing = dependency('webrtc-audio-processing', version: ['>=0.2', '<0.4'], disabler: true, required: get_option('plugin-rtp')) +dep_webrtc_audio_processing = dependency('webrtc-audio-processing', version: ['>=0.2', '<0.4'], required: get_option('plugin-rtp-webrtc-audio-processing')) prog_git = find_program('git', required: false) prog_python = python.find_installation() |