Add daemon

This commit is contained in:
dec05eba
2022-03-30 19:14:30 +02:00
parent a66516e34e
commit 900553e6c0
6 changed files with 106 additions and 39 deletions

10
build.sh Executable file
View File

@@ -0,0 +1,10 @@
#!/bin/sh
[ $# -ne 1 ] && echo "usage: build.sh debug|release" && exit 1
script_dir=$(dirname "$0")
cd "$script_dir"
sibs build --"$1" gpu-screen-recorder-overlay-daemon
sibs build --"$1"
echo "Successfully built"