From 7ff679769bf6bc49619b19da00772a88758827e5 Mon Sep 17 00:00:00 2001 From: dec05eba Date: Sat, 22 Oct 2022 14:17:03 +0200 Subject: Add a config file to store position/rotation/zoom and use those the next time vr-video-player starts --- build.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'build.sh') diff --git a/build.sh b/build.sh index 1f2d44b..132f12d 100755 --- a/build.sh +++ b/build.sh @@ -3,7 +3,7 @@ dependencies="glm glew sdl2 openvr x11 xcomposite xfixes mpv" includes=$(pkg-config --cflags $dependencies) libs=$(pkg-config --libs $dependencies) -gcc -c src/window_texture.c -O2 $includes -g++ -c src/mpv.cpp -O2 $includes -g++ -c src/main.cpp -O2 $includes +gcc -c src/window_texture.c -O2 -DNDEBUG $includes +g++ -c src/mpv.cpp -O2 -DNDEBUG $includes +g++ -c src/main.cpp -O2 -DNDEBUG $includes g++ -o vr-video-player -O2 window_texture.o mpv.o main.o -s $libs -- cgit v1.2.3