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

Update README.md

parent 148cbfc7
No related branches found
No related tags found
No related merge requests found
Pipeline #7705 passed
......@@ -2,26 +2,6 @@ A C++ Toolbox with utilities for 2D laser scan processing, made at IRI (www.iri.
# Installation
Clone the repository in your chosen directory. In a terminal:
```sh
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:
```sh
cmake ..
make
```
## Optional dependencies
**Canonical Scan Matching - CSM**
......@@ -55,9 +35,36 @@ make
sudo make install
```
## Install via source
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".
The `sudo` is required only if `${CMAKE_INSTALL_PREFIX}`
is a system diretory managed by administrator user root.
Clone the repository in your chosen directory. In a terminal:
```sh
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:
```sh
cmake ..
make
```
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