blob: 1c772cd5c9edcc6ce50fc92791ca58a741cc6e2e [file] [log] [blame]
#!/bin/bash
# Switch to directory of this script
MYDIR=$(dirname $(realpath "$0"))
cd "${MYDIR}"
# Exit if anything fails
set -e
mkdir -p build
cd build
cmake ..
make -j
ctest -j
echo Success