Files
oboe/.github/workflows/scripts/linux/install-tgui.sh
2024-10-30 13:25:54 -05:00

10 lines
225 B
Bash
Executable File

#!/bin/sh -ve
git clone --depth 1 -b 0.9 https://github.com/texus/TGUI.git
cd TGUI
export CLICOLOR_FORCE=1
cmake -D TGUI_CXX_STANDARD=14 -D SFML_DIR=lib/cmake/SFML .
make
cmake --install .
cd .. # Probably not needed but...