README.md: update install section, INSTALL.md fix command

This commit is contained in:
Gwenhael Goavec-Merou 2020-01-28 11:54:07 +01:00
parent 9dc0372304
commit af1ff3d6f0
2 changed files with 9 additions and 2 deletions

View File

@ -5,6 +5,8 @@
``` ```
$ mkdir build $ mkdir build
$ cd build $ cd build
$ cmake ../src/ $ cmake ../
$ cmake --build . $ cmake --build .
or
$ make -j$(nproc)
``` ```

View File

@ -34,7 +34,12 @@ and if not already done, install **pkg-config**, **make** and **g++**.
To build the app: To build the app:
```bash ```bash
$ make $ mkdir build
$ cd build
$ cmake ../
$ cmake --build .
or
$ make -j$(nproc)
``` ```
To install To install
```bash ```bash