#!/bin/sh -e

mkdir build
cd build
cmake ../
for binary in $(dpkg -L lambda-align); do ln -s ${binary} bin/; done
ctest  --parallel $(nproc)

