now compiling 😄

This commit is contained in:
Johannes Wendel
2019-04-25 21:39:43 +02:00
parent 30ab854db6
commit 4cd6dfedd3
4 changed files with 53 additions and 43 deletions

View File

@@ -0,0 +1,14 @@
#!/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