From 105c044d3de83876613566b3969bcb6f466ec5fc Mon Sep 17 00:00:00 2001
From: Timo Kersten <kersten@in.tum.de>
Date: Mon, 15 Oct 2018 15:11:14 +0200
Subject: [PATCH] Update README.md

---
 README.md | 9 +++++++++
 1 file changed, 9 insertions(+)

diff --git a/README.md b/README.md
index 856c1c8..660353c 100644
--- a/README.md
+++ b/README.md
@@ -14,6 +14,7 @@ and other IDEs.
 
 Building from Terminal:
 Start in the project directory.
+To create a build for debugging:
 ```
 mkdir -p build/debug
 cd build/debug
@@ -21,6 +22,14 @@ cmake -DCMAKE_BUILD_TYPE=Debug ../..
 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.
 
 Make sure your builds are not failing! <br/>
-- 
GitLab