Tyro/cmake.sh

8 lines
62 B
Bash
Executable File

#!/bin/bash
mkdir -p build
cd build
cmake ..
make "$@"
cd ..