15 lines
202 B
Bash
Executable File
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
|