#!/bin/bash

if ! [ -d build ]; then
	mkdir build
fi

cd build

cmake .. -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr && make -j 4
