10 lines
158 B
Bash
10 lines
158 B
Bash
|
#!/bin/sh
|
||
|
#
|
||
|
apt update
|
||
|
apt install -y python3-venv
|
||
|
git submodule update --init --recursive
|
||
|
|
||
|
cmake .
|
||
|
# More than two processes creates too much load
|
||
|
make -j2
|