6 lines
77 B
Bash
6 lines
77 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
mkdir -p build
|
||
|
cd build
|
||
|
cmake ..
|
||
|
make -j # builds with all cores
|