10 lines
158 B
Bash
Executable File
10 lines
158 B
Bash
Executable File
#!/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
|