Skip to content
Snippets Groups Projects
Commit 105c044d authored by Timo Kersten's avatar Timo Kersten
Browse files

Update README.md

parent 87738189
No related branches found
No related tags found
No related merge requests found
...@@ -14,6 +14,7 @@ and other IDEs. ...@@ -14,6 +14,7 @@ and other IDEs.
Building from Terminal: Building from Terminal:
Start in the project directory. Start in the project directory.
To create a build for debugging:
``` ```
mkdir -p build/debug mkdir -p build/debug
cd build/debug cd build/debug
...@@ -21,6 +22,14 @@ cmake -DCMAKE_BUILD_TYPE=Debug ../.. ...@@ -21,6 +22,14 @@ cmake -DCMAKE_BUILD_TYPE=Debug ../..
make make
``` ```
To create a build for performance measurements:
```
mkdir -p build/release
cd build/release
cmake -DCMAKE_BUILD_TYPE=RelWithDebInfo ../..
make
```
This creates the binaries test_all and main. This creates the binaries test_all and main.
Make sure your builds are not failing! <br/> Make sure your builds are not failing! <br/>
......
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