1
1
Fork 0
mirror of https://github.com/QB64Official/qb64.git synced 2024-09-18 23:14:53 +00:00
qb64/internal/c/parts/video/font/ttf/os/osx/build.command
2020-02-20 21:43:23 -03:00

12 lines
227 B
Bash
Executable file

cd "$(dirname "$0")"
clang++ -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