10 lines
144 B
Bash
10 lines
144 B
Bash
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
## install required software
|
|
apt update
|
|
apt install build-essential cmake
|
|
apt install protobuf-compiler libprotobuf-c-dev
|
|
|