aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xbuild.sh9
1 files changed, 6 insertions, 3 deletions
diff --git a/build.sh b/build.sh
index 563cfec..572d354 100755
--- a/build.sh
+++ b/build.sh
@@ -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