#!/usr/bin/bash

# Configure cmake build.
echo Configuring cmake build...
mkdir build
cd build
cmake ..
cd ..

