#!/bin/bash

set -ex

mkdir build && cd build &&
cmake .. -DCMAKE_BUILD_TYPE=Release &&
make -j$(nproc) &&
ctest -j$(nproc) -V
