1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-09-19 14:24:59 +00:00
QB64-PE/internal/c/parts/video/font/ttf/os/osx/build.command
2020-01-02 14:13:56 +11:00

12 lines
223 B
Bash
Executable file

cd "$(dirname "$0")"
g++ -s -c -w -Wall ../../src/freetypeamalgam.c -o src.o
echo "Press any key to continue..."
Pause()
{
OLDCONFIG=`stty -g`
stty -icanon -echo min 1 time 0
dd count=1 2>/dev/null
stty $OLDCONFIG
}
Pause