xlnt/cmake/build-linux.sh
2015-11-01 12:31:29 -05:00

12 lines
111 B
Bash
Executable File

ACTION=$1
if [ "$ACTION" = "clean" ]; then
rm -rf build
exit 0
fi
mkdir build
cd build
cmake ..
make