gpu-screen-recorder/build.sh

9 lines
403 B
Bash
Raw Normal View History

2022-01-30 22:24:20 +00:00
#!/bin/sh -e
dependencies="libavcodec libavformat libavutil x11 xcomposite libpulse libswresample"
2022-10-11 00:47:17 +00:00
includes="$(pkg-config --cflags $dependencies)"
libs="$(pkg-config --libs $dependencies) -ldl -pthread -lm"
2022-10-11 00:47:17 +00:00
g++ -c src/sound.cpp -O2 -g0 -DNDEBUG $includes
g++ -c src/main.cpp -O2 -g0 -DNDEBUG $includes
2022-01-30 22:24:20 +00:00
g++ -o gpu-screen-recorder -O2 sound.o main.o -s $libs
echo "Successfully built gpu-screen-recorder"