gb6/cli/compile.sh

7 lines
79 B
Bash
Raw Permalink Normal View History

#!/bin/sh
mkdir -p build
cd build
2019-10-22 06:30:19 +00:00
cmake -DCMAKE_BUILD_TYPE=Debug ..
make
cd ..