allgames/build.sh
2025-12-29 13:27:46 -03:00

13 lines
239 B
Bash
Executable file

#!/bin/bash
cd cmake-build-debug || exit 1
select t in enginend test forespend endlauncher; do
case $t in
enginend|test|forespend|endlauncher)
cmake --build . --target "$t"
;;
esac
break
done