7 lines
53 B
Bash
7 lines
53 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
mkdir -p build
|
||
|
cd build
|
||
|
cmake ..
|
||
|
make -j4
|