#!/bin/bash

mkdir -p build && cd build || exit 1
cmake ../parser -DCMAKE_BUILD_TYPE=Release && make || exit 1

cd ..
