#!/bin/sh

which cmake &> /dev/null

if [ $? -ne 0 ]
then
	echo "Error: cmake not found"
else
	cmake $@ ..
fi		
