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

[ $# -ne 1 ] && echo "usage: build.sh debug|release" && exit 1

script_dir=$(dirname "$0")
cd "$script_dir"

sibs build --"$1" video_player
sibs build --"$1"
echo "Successfully built the video player and QuickMedia"