From 8693e416bc8208af8132391800b4ae023f0b0740 Mon Sep 17 00:00:00 2001 From: Mathieu Duponchelle Date: Mon, 29 Oct 2018 14:00:31 +0100 Subject: [PATCH] examples: document how to run --- src/examples/README | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 src/examples/README diff --git a/src/examples/README b/src/examples/README new file mode 100644 index 000000000..ef545b363 --- /dev/null +++ b/src/examples/README @@ -0,0 +1,19 @@ +# Running the examples + +A pipewire daemon needs to be running for the examples to connect to: + +``` shell +./pw-uninstalled.sh +./build/src/daemon/pipewire +``` + +You can then run the examples in a second terminal, for example: + +``` shell +./pw-uninstalled.sh +./build/src/examples/local-v4l2 +``` + +This assumes the development package for `SDL2` was installed, check the meson +build definition in `src/examples` to find out the dependencies for each +example.