Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGuillaume Desmottes <guillaume.desmottes@collabora.com>2020-01-17 07:53:43 +0300
committerGuillaume Desmottes <guillaume.desmottes@collabora.com>2020-01-30 13:57:00 +0300
commit1b84dd1f6b6917630a2219bc09482d05f1fc5b8e (patch)
treee70fe129f795f06c176f583541e35080fc31c98c /meson_options.txt
parenta43ad8f2dd93abb1ae88c4f0b2e8a77b1f1fc0e4 (diff)
meson: add sodium option
Allow us to pick between the built-in libsodium, use the one from the system or disable the plugin.
Diffstat (limited to 'meson_options.txt')
-rw-r--r--meson_options.txt3
1 files changed, 3 insertions, 0 deletions
diff --git a/meson_options.txt b/meson_options.txt
index 59e23fe9f..4adb45208 100644
--- a/meson_options.txt
+++ b/meson_options.txt
@@ -1 +1,4 @@
option('dav1d', type : 'feature', value : 'auto', description : 'Build dav1d plugin')
+option('sodium', type : 'combo',
+ choices : ['system', 'built-in', 'disabled'], value : 'built-in',
+ description : 'Weither to use libsodium from the system or the built-in version from the sodiumoxide crate')