aboutsummaryrefslogtreecommitdiff
path: root/build.sh
blob: 843ef56c52dcd230eaecb79bf182af50a5d91439 (plain)
1
2
3
4
5
6
7
8
9
#!/bin/sh -e

dependencies="glm glew sdl2 openvr x11 xcomposite xfixes mpv"
includes=$(pkg-config --cflags $dependencies)
libs="$(pkg-config --libs $dependencies) -lm -pthread"
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