Files
Johannes Wendel 4cd6dfedd3 now compiling 😄
2019-04-25 21:39:43 +02:00

15 lines
202 B
Bash
Executable File

#!/bin/sh
echo "Making sure the code compiles!!!"
if [ ! -d 'FlippR-Driver/build' ]; then
echo "Make sure you have the build folder!"
exit 1
fi
cd FlippR-Driver/build
cmake ..
make
exit $rc