mirror of https://github.com/xemu-project/xemu.git
build: Only update imgui if not present
This commit is contained in:
parent
f8bdd3d4cb
commit
edbcd01402
4
build.sh
4
build.sh
|
@ -248,7 +248,9 @@ set -x # Print commands from now on
|
||||||
"$@"
|
"$@"
|
||||||
|
|
||||||
# Force imgui update now to work around annoying make issue
|
# Force imgui update now to work around annoying make issue
|
||||||
./scripts/git-submodule.sh update ui/imgui
|
if ! test -f "${project_source_dir}/ui/imgui/imgui.cpp"; then
|
||||||
|
./scripts/git-submodule.sh update ui/imgui
|
||||||
|
fi
|
||||||
|
|
||||||
time make -j"${job_count}" 2>&1 | tee build.log
|
time make -j"${job_count}" 2>&1 | tee build.log
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue