Skip to content
Snippets Groups Projects
Commit d8976d98 authored by Joan Vallvé Navarro's avatar Joan Vallvé Navarro
Browse files

readme

parent 19fa2c71
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment