From 70ecf1aaf13dc09914c6243f3c3ab1ebf8d8640d Mon Sep 17 00:00:00 2001
From: fvanroie <15969459+fvanroie@users.noreply.github.com>
Date: Fri, 24 Jan 2020 13:49:58 +0100
Subject: [PATCH] Update README.md
---
README.md | 14 ++++++++++++++
1 file changed, 14 insertions(+)
diff --git a/README.md b/README.md
index a60a48c6..091fc11a 100644
--- a/README.md
+++ b/README.md
@@ -21,3 +21,17 @@ This version also adds ESP32 support to take advantage of the additional hardwar
| Custom .zi V5 font |
- - [x] yes
| - - [x] yes
| FontAwesome Icons | - - [x] 1200+
| - - [x] 1200+
| PNG images | - - [ ] no
| *tbd*
+
+# Cloning
+
+Make sure to add the `--recursive` parameter when cloning the project. Otherwise git will not download the required submodules in the `/lib` subdirectory.
+
+```bash
+git clone --recursive https://github.com/fvanroie/hasp-lvgl
+```
+
+If you already cloned hasp-lvgl without the submodules, you can fetch the submodules seperately using:
+
+```bash
+git submodule update --init --recursive
+```