1
1
Fork 0
mirror of https://github.com/QB64Official/qb64.git synced 2024-08-22 05:35:08 +00:00
qb64/internal/c/libqb/os/lnx/build_test.sh

12 lines
310 B
Bash
Executable file

#!/bin/sh
g++ -c -w -Wall ../../../libqb.cpp -D FREEGLUT_STATIC -D DEPENDENCY_AUDIO_OUT -D DEPENDENCY_AUDIO_DECODE -D DEPENDENCY_AUDIO_CONVERSION -o libqb_test_only.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