gb6/cli/compile.sh

7 lines
54 B
Bash
Executable File

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