8 lines
64 B
Bash
Executable file
8 lines
64 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -e
|
|
mkdir -p build
|
|
cd build
|
|
cmake ..
|
|
make
|
|
cd ..
|