asciimation

An ASCII animation interpreter for the terminal.


asciimation

/

build.sh

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
#!/usr/bin/env bash
set -e

BUILD_TYPE="Debug"

if [[ $# > 0 ]]; then
  if [[ $1 == "-d" ]]; then
    BUILD_TYPE="Debug"
  elif [[ $1 == "-r" ]]; then
    BUILD_TYPE="Release"
  else
    printf "usage: ./build.sh [-d|-r]\n";
    exit 1
  fi
fi

# source environment variables
source ./env.sh

printf "\nBuilding ${APP} in ${BUILD_TYPE} mode\n"

if [[ ${BUILD_TYPE} == "Debug" ]]; then
  printf "\nCompiling ${APP}\n"
  mkdir -p build/debug
  cd build/debug
  cmake ../../ -DCMAKE_BUILD_TYPE=${BUILD_TYPE}
  time make

elif [[ ${BUILD_TYPE} == "Release" ]]; then
  printf "\nCompiling ${APP}\n"
  mkdir -p build/release
  cd build/release
  cmake ../../ -DCMAKE_BUILD_TYPE=${BUILD_TYPE}
  time make
fi
Back to Top