6 lines
66 B
Bash
6 lines
66 B
Bash
|
#!/bin/sh
|
||
|
mkdir -p ./.build-mow
|
||
|
cd ./.build-mow
|
||
|
cmake ..
|
||
|
make -j4
|