From 3dcdea9e808497077655bf9aa311de1b0d516d7c Mon Sep 17 00:00:00 2001 From: Niklas Jang Date: Sat, 14 Sep 2019 15:54:03 +0000 Subject: [PATCH] docs: tutorials: improve Linux compile instruction for newbies Part-of: --- subprojects/gst-docs/markdown/installing/on-linux.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/subprojects/gst-docs/markdown/installing/on-linux.md b/subprojects/gst-docs/markdown/installing/on-linux.md index ae6aa03d38..acf497d06b 100644 --- a/subprojects/gst-docs/markdown/installing/on-linux.md +++ b/subprojects/gst-docs/markdown/installing/on-linux.md @@ -59,6 +59,14 @@ git clone https://gitlab.freedesktop.org/gstreamer/gstreamer #### Building the tutorials +Change directory to find basic-tutorials-1: + +``` +cd gstreamer/subprojects/gst-docs/examples/tutorials/ +``` + +And then compile it with: + ``` gcc basic-tutorial-1.c -o basic-tutorial-1 `pkg-config --cflags --libs gstreamer-1.0` ```