#!/bin/bash
cmake_configure(){
	mkdir build
	cd build
	cmake .. -DCMAKE_INSTALL_PREFIX=/usr "$@"
}
