Tyro/cmake.sh

8 lines
62 B
Bash
Raw Normal View History

#!/bin/bash
2015-07-10 16:24:09 -04:00
mkdir -p build
cd build
cmake ..
make "$@"
cd ..