gb6/cli/compile.sh
2019-10-22 01:30:19 -05:00

7 lines
79 B
Bash
Executable File

#!/bin/sh
mkdir -p build
cd build
cmake -DCMAKE_BUILD_TYPE=Debug ..
make
cd ..