From 8b3492bc3a948e96cde52e4fb20cd2981b43b33e Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Georg=20Gra=C3=9Fnick?=
 <georg.grassnick@mailbox.tu-dresden.de>
Date: Sun, 1 Sep 2019 15:50:20 +0200
Subject: [PATCH] Add git submodule call to readme

---
 readme.md | 12 +++++++++++-
 1 file changed, 11 insertions(+), 1 deletion(-)

diff --git a/readme.md b/readme.md
index 6433f2ca..7e2ad878 100644
--- a/readme.md
+++ b/readme.md
@@ -11,6 +11,16 @@ These instructions will get you a copy of the project up and running on your loc
 You will need the following tools to build the project:
 * JavaJDK >= 11
 * gradle >= 4.4
+* git
+
+#### Build preparation
+
+Use the following commands to setup your local source tree:
+
+```bash
+git clone ${URL_OF_THIS_REPO}
+git submodule update --init --recursive # This will fetch third party dependencies
+```
 
 ### Installing
 
@@ -22,7 +32,7 @@ gradle jar
 to create an executable jar file in `build/libs` which will include all runtime dependencies.
 
 
-## Running the tests
+### Running the tests
 
 A simple call of
 ```
-- 
GitLab