diff --git a/docs/building.md b/docs/building.md index ffde517a..8851461e 100644 --- a/docs/building.md +++ b/docs/building.md @@ -1,11 +1,17 @@ # Building -After cloning the repo, ensure all submodules are cloned. +After cloning the repo ensure all submodules are cloned. ``` git submodule update --init --checkout --recursive ``` +If you don't have Git LFS installed when cloning the repository, you'll need to pull the LFS objects + +``` +git lfs fetch --all && git lfs pull && git submodule foreach --recursive 'git lfs fetch --all && git lfs pull' +``` + Dependencies can be installed with the provided scripts. ```