+= debug cmake build type authored by Andreas Schmidt's avatar Andreas Schmidt
...@@ -17,11 +17,24 @@ cmake .. ...@@ -17,11 +17,24 @@ cmake ..
make make
``` ```
In order to install a static as well as a shared library run:
```bash
make install
```
The following compile-flags for CMake are supported: The following compile-flags for CMake are supported:
* `DEBUG`: Enables the output of debug information. * `DEBUG`: Enables the output of debug information.
* `XLAP`: Enables the cross layer timing analysis tool, which captures traces of packets throughout PRRT. The solution can be found at [here](http://xlap.larn.systems). * `XLAP`: Enables the cross layer timing analysis tool, which captures traces of packets throughout PRRT. The solution can be found at [here](http://xlap.larn.systems).
### Debugging
We provide a DEBUG build type for CMake. You can use it by typing:
```bash
cmake .. -DCMAKE_BUILD_TYPE=DEBUG
```
## Python ## Python
<a name="python"></a> <a name="python"></a>
... ...
......