#!/usr/bin/env sh if [ ! -d build ] then mkdir build fi cmake -S . -B build -G "${1:-Ninja}" -DCMAKE_BUILD_TYPE="${2:-Debug}"