mirror of
https://github.com/eliasstepanik/imgui-rs.git
synced 2026-01-11 05:28:35 +00:00
15 lines
542 B
Bash
Executable File
15 lines
542 B
Bash
Executable File
#!/bin/bash
|
|
set -euo pipefail
|
|
|
|
# this should be a path on your local, like `~/Documents/imgui` to the Dear ImGui repository.
|
|
IMGUI_DIR=${1:?}
|
|
|
|
SCRIPT_DIR=$(dirname ${0} | python3 -c 'import os, sys; print(os.path.abspath(sys.stdin.read().strip()))' )
|
|
|
|
cd ${SCRIPT_DIR}
|
|
./_update-imgui.sh $IMGUI_DIR v1.91.2 ./imgui-master/imgui
|
|
./_update-imgui.sh $IMGUI_DIR v1.91.2-docking ./imgui-docking/imgui
|
|
|
|
./_update-imgui.sh $IMGUI_DIR v1.91.2 ./imgui-master-freetype/imgui
|
|
./_update-imgui.sh $IMGUI_DIR v1.91.2-docking ./imgui-docking-freetype/imgui
|