#!/usr/bin/env bash
clear
echo "Running CMake..."
cmake -S . -B build 
cmake --build build 
if [ $? -ne 0 ]; then
	exit 1
fi