From 8aa653fd68337ce0220c034161c19fdee3e5bf62 Mon Sep 17 00:00:00 2001 From: Matt Borgerson Date: Thu, 12 Mar 2020 03:35:35 -0700 Subject: [PATCH] build: Ensure required submodules get checked out --- build.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/build.sh b/build.sh index c6513b8f55..abb0e38d80 100755 --- a/build.sh +++ b/build.sh @@ -71,6 +71,11 @@ case "$(uname -s)" in # Adjust compilation options based on platform ;; esac +# Ensure required submodules get checked out +git submodule update --init ui/inih +git submodule update --init ui/imgui +git submodule update --init ui/ImGuiFileDialog + # find absolute path (and resolve symlinks) to build out of tree configure="$(dirname "$($readlink -f "${0}")")/configure"