From a79583d52aeaf2d88edea710769eebb8945765ec Mon Sep 17 00:00:00 2001 From: Jonathan Thomas Date: Fri, 8 Feb 2019 13:57:36 -0600 Subject: [PATCH] Updated Linux Build Instructions (markdown) --- Linux-Build-Instructions.md | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/Linux-Build-Instructions.md b/Linux-Build-Instructions.md index a3d8e4c..fb7b71a 100644 --- a/Linux-Build-Instructions.md +++ b/Linux-Build-Instructions.md @@ -122,7 +122,20 @@ In order to actually compile libopenshot, we need to install some dependencies o swig ``` -## Linux Build Instructions +## Linux Build Instructions (libopenshot-audio) +To compile libopenshot-audio, we need to go through a few additional steps to manually build and install it. Launch a terminal and enter: + +``` +cd [libopenshot-audio repo folder] +mkdir build +cd build +cmake ../ +make +make install +./src/openshot-audio-test-sound (This should play a test sound) +``` + +## Linux Build Instructions (libopenshot) Run the following commands to compile libopenshot: ```