esri_assignment/build.sh

25 lines
319 B
Bash
Raw Permalink Normal View History

2021-06-28 00:09:59 +02:00
#!/bin/bash
set -e
## build software
rm -rf build
mkdir build && cd build
cmake .. -D BUILD_TESTING=ON
cmake --build .
## run tests
ctest -V
## run the executable
./src/main \
../recordings/10732.pb \
../recordings/10740.pb \
../recordings/10742.pb \
grid.json
echo ""
echo "result written to grid.json"