forked from Silverfish/proton-bridge
Wait for Bridge certificate and use it for gRPC connection Other: add README file for Bridge-GUI prerequisites GODT-1673: Configure Client/Server to make use of the bridge cert Other : comments + todo on known issue Other: fix go import alias [skip-ci]
29 lines
491 B
Markdown
29 lines
491 B
Markdown
## Prerequisite
|
|
|
|
```` bash
|
|
sudo apt install build-essential
|
|
sudo apt install tar curl zip unzip
|
|
sudo apt install linux-headers-$(uname -r)
|
|
sudo apt install mesa-common-dev libglu1-mesa-dev
|
|
````
|
|
|
|
## Define Qt5DIR
|
|
|
|
```` bash
|
|
export QT5DIR=/opt/Qt/5.13.0/gcc_64
|
|
````
|
|
|
|
## install vcpkg and define VCPKG_ROOT
|
|
|
|
```` bash
|
|
git clone https://github.com/Microsoft/vcpkg.git
|
|
./vcpkg/bootstrap-vcpkg.sh
|
|
export VCPKG_ROOT=$PWD/vcpkg
|
|
````
|
|
|
|
## install grpc & protobuf
|
|
|
|
```` bash
|
|
./vcpkg install grpc
|
|
````
|