From d8976d9813fe706d02efb1188707fb41500fee31 Mon Sep 17 00:00:00 2001
From: joanvallve <jvallve@iri.upc.edu>
Date: Thu, 16 Dec 2021 10:42:27 +0100
Subject: [PATCH] readme

---
 README.md | 15 ++++-----------
 1 file changed, 4 insertions(+), 11 deletions(-)

diff --git a/README.md b/README.md
index 174d05c..afa2932 100644
--- a/README.md
+++ b/README.md
@@ -9,21 +9,14 @@ cd <your/path>
 git clone <repo-link>
 ```
 
-Create a directory to build all the source files:
-```sh
-mkdir build
-cd build
-```
-
-Compile the source files. To change the install directory you must set cmake environment variable `${CMAKE_INSTALL_PREFIX}` (e.g. using command `ccmake ..` before calling `cmake ..`). 
-Its default value on UNIX-like/Linux systems is "/usr/local".
+Compile the source files.
 
 ```sh
-cmake ..
-make
+cmake .
+make -j4
 ```
 
-Finally, you can install the library (`sudo` is required only if `${CMAKE_INSTALL_PREFIX}` is a system diretory managed by administrator user root).
+Finally, you can install the library
 
 ```sh
 make install
-- 
GitLab