From f3d5c5a5ee15be460c0bc626cc65a168e36fc2cb Mon Sep 17 00:00:00 2001 From: Ivanq Date: Tue, 13 Jul 2021 16:01:46 +0300 Subject: [PATCH] Fix wording in 'Building using system libraries' Make it clear that running CMake to build using system libraries is not enough and running make is necessary too. Signed-off-by: Ivanq --- BUILDING.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/BUILDING.md b/BUILDING.md index d4ac0028a..882c85ecd 100644 --- a/BUILDING.md +++ b/BUILDING.md @@ -156,8 +156,9 @@ You can use `cmake -LH` to get a list of the options available (or use CMake GUI On Linux it is possible to build Tenacity using (almost) only the libraries provided by the package manager. Please, see the list of required libraries [here](linux/required_libraries.md). +Follow the steps from [Linux & Other OS](#linux--other-os) section but run CMake with the following arguments: + ``` -$ mkdir build && cd build $ cmake -G "Unix Makefiles" \ -Duse_ffmpeg=loaded \ -Dlib_preference=system \