12 lines
104 B
Bash
Executable File

#!/bin/sh
#build in directory
if [ -d build ]
then
rm -R build
fi
mkdir build
cd build
cmake ..
make