Tyro/cmake.sh
2019-05-30 16:09:01 -04:00

8 lines
62 B
Bash
Executable File

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