2b6093861c
Signed-off-by: Andrea Odetti <mariofutire@gmail.com>
9 lines
99 B
Bash
9 lines
99 B
Bash
#!/bin/bash
|
|
|
|
set -euxo pipefail
|
|
|
|
mkdir -p build
|
|
cd build
|
|
|
|
cmake -DCMAKE_BUILD_TYPE=RELEASE ..
|
|
make
|