bfbcompiler/compile.sh

8 lines
93 B
Bash
Executable File

#!/bin/sh
if [ ! -d "bin" ]; then
cmake -S . -B bin
fi
cmake --build bin --clean-first