blob: f728e9ae3cb8d151d4e00eb0b8f3122252c40345 [file] [log] [blame]
OPTION=$1
if [ "$OPTION" = 'help' ]; then
echo build.sh - build debug library
echo build.sh clean - clean the build
echo build.sh release - build release library
elif [ "$OPTION" = "release" ]; then
./build/bin/release/rive_viewer
else
./build/bin/debug/rive_viewer
fi