7 lines
64 B
Bash
7 lines
64 B
Bash
#!/usr/bin/env sh
|
|
|
|
mkdir release
|
|
cd release
|
|
cmake ..
|
|
make
|
|
cd ..
|