1#!/bin/bash
2
3# abort on errors
4set -e
5
6mkdir -p build
7cd build
8cmake .. "$@"
9
10