diff options
-rwxr-xr-x | build.sh | 9 |
1 files changed, 6 insertions, 3 deletions
@@ -1,8 +1,11 @@ #!/bin/sh -e +opts="-O2 -g0 -DNDEBUG -Wall -Wextra -Werror -s" +[ -n "$DEBUG" ] && opts="-O0 -g3 -Wall -Wextra -Werror"; + dependencies="gtk+-3.0 x11 xrandr libpulse" includes="$(pkg-config --cflags $dependencies)" libs="$(pkg-config --libs $dependencies) -ldl" -gcc -c src/egl.c -O2 -g0 -DNDEBUG $includes -g++ -c src/main.cpp -O2 -g0 -DNDEBUG $includes -g++ -o gpu-screen-recorder-gtk -O2 egl.o main.o -s $libs +gcc -c src/egl.c $opts $includes +g++ -c src/main.cpp $opts $includes +g++ -o gpu-screen-recorder-gtk -O2 egl.o main.o $libs $opts |