aboutsummaryrefslogtreecommitdiff
path: root/build.sh
blob: 73911f53061e0e5930bdc07798faadb16c91de91 (plain)
1
2
3
4
5
6
7
8
9
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"