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
+```