aboutsummaryrefslogtreecommitdiff
path: root/build.sh
blob: 05603dbeaf4a24efb2649eacaaa334b61b2d7891 (plain)
1
2
3
4
5
6
#!/bin/sh -e

dependencies="gtk+-3.0 x11 xrandr libpulse"
includes="$(pkg-config --cflags $dependencies)"
libs="$(pkg-config --libs $dependencies)"
g++ -o gpu-screen-recorder-gtk -O2 src/main.cpp -s $includes $libs