1#!/bin/bash
2
3set -e
4set -v
5
6rm -rf build
7mkdir build
8cd build
9cmake ..
10make -j
11