build-debug.sh 285 B

123456789101112131415
  1. #!/bin/bash
  2. # Convenience build script for Linux and macOS.
  3. OS=$(uname -s)
  4. if [ $OS == 'Linux' ]
  5. then
  6. echo "Building for Linux..."
  7. ./build-all.sh linux build debug
  8. elif [[ $OS == 'Darwin' ]]; then
  9. echo "Building for macOS..."
  10. ./build-all.sh macos build debug
  11. fi