Tyro/cmake.sh

8 lines
97 B
Bash
Executable File

#!/usr/bin/env bash
mkdir -p build
cd build
cmake -DCMAKE_BUILD_TYPE=Release ..
make "$@"
cd ..