build.sh 230 B

1234567891011
  1. #!/bin/sh -e
  2. [ $# -ne 1 ] && echo "usage: build.sh debug|release" && exit 1
  3. script_dir=$(dirname "$0")
  4. cd "$script_dir"
  5. sibs build --"$1" video_player
  6. sibs build --"$1"
  7. echo "Successfully built the video player and QuickMedia"