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