From ece09d11b59c88f40e374d0a1a5723a368c37700 Mon Sep 17 00:00:00 2001 From: Alexey Sokolov Date: Mon, 19 Mar 2018 00:45:46 +0000 Subject: [PATCH] README: recommend out of tree build --- README.md | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 857a8c9d..1646ccbd 100644 --- a/README.md +++ b/README.md @@ -67,7 +67,9 @@ but calls CMake with CMake-style parameters. Installation from source code is performed using the CMake toolchain. ```shell -cmake . +mkdir build +cd build +cmake .. make make install ``` @@ -87,7 +89,9 @@ If you are building from git, you will need to run `./autogen.sh` first to produce the `configure` script. ```shell -./configure +mkdir build +cd build +../configure make make install ```