10 lines
112 B
Bash
Executable File
10 lines
112 B
Bash
Executable File
#!/bin/bash
|
|
set -euo pipefail
|
|
|
|
mkdir -p build
|
|
cd build
|
|
rm -rf ./*
|
|
|
|
cmake -DCMAKE_BUILD_TYPE=Release ..
|
|
make -j3
|