From d5973fb6ce6573b410c2709ac3e2a8a421530047 Mon Sep 17 00:00:00 2001 From: Johannes Brakensiek Date: Thu, 30 Apr 2020 19:12:59 +0200 Subject: [PATCH] Add INSTALL instruction to reflect that git submodules need to be checked out as well --- INSTALL | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/INSTALL b/INSTALL index a91268f..10378d7 100644 --- a/INSTALL +++ b/INSTALL @@ -14,6 +14,15 @@ things that can be used by other programs that actually perform the building. I recommend that you use Ninja for building if you are compiling regularly, but these instructions will use Make to avoid the need for an extra dependency. +When checking out the code make sure you check out git submodules as well +either by using + + $ git checkout --recursive + +or by getting submodules after checkout using + + $ git submodule update --init + After checking out the code, build as follows: $ mkdir Build