mirror of
https://github.com/eliasstepanik/imgui-rs.git
synced 2026-01-12 14:08:37 +00:00
36 lines
800 B
Bash
Executable File
36 lines
800 B
Bash
Executable File
#!/bin/bash
|
|
set -euo pipefail
|
|
|
|
SCRIPT_DIR=$(dirname ${0} | python3 -c 'import os, sys; print(os.path.abspath(sys.stdin.read().strip()))' )
|
|
IMGUI_DIR=${1:?}
|
|
COMMITISH=${2:?}
|
|
OUT_DIR=${3:?}
|
|
|
|
# Location of temporary checkout of imgui at specified commit (or branch)
|
|
CHECKOUT="${SCRIPT_DIR}"/_temp_imgui_worktree
|
|
|
|
# Make checkout
|
|
|
|
pushd "${IMGUI_DIR}" > /dev/null
|
|
|
|
# Sanity check the supplied imgui path
|
|
git rev-parse HEAD
|
|
ls imgui.h
|
|
|
|
# Get files from specified rev
|
|
mkdir "${CHECKOUT}"
|
|
git archive "${COMMITISH}" | tar xC "${CHECKOUT}"
|
|
|
|
popd > /dev/null
|
|
|
|
# Copy required files
|
|
mkdir -p ${OUT_DIR}/
|
|
mkdir -p ${OUT_DIR}/misc/freetype/
|
|
|
|
cp "${CHECKOUT}"/LICENSE.txt "${OUT_DIR}"/
|
|
cp "${CHECKOUT}"/*.{h,cpp} "${OUT_DIR}"/
|
|
cp -r "${CHECKOUT}"/misc/freetype/ "${OUT_DIR}"/misc/
|
|
|
|
# Clean up
|
|
rm -r "${CHECKOUT}"
|