1
0
mirror of https://github.com/PurpleI2P/i2pd_docs_en synced 2025-03-12 13:21:22 +00:00
This commit is contained in:
nonlinear-chaos-order-etc-etal 2021-04-04 18:08:34 +08:00 committed by GitHub
parent aa675dc97e
commit 2bfe688f1b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -52,12 +52,22 @@ Then, open Qt Creator. Open `git/i2pd/qt/i2pd_qt/i2pd_qt.pro`; set build make pa
sudo apt-get install build-essential g++ make libcrypto++-dev libssl-dev libboost-all-dev libminiupnpc-dev libwebsocketpp-dev qt5-default libqt5gui5 git zlib1g-dev sudo apt-get install build-essential g++ make libcrypto++-dev libssl-dev libboost-all-dev libminiupnpc-dev libwebsocketpp-dev qt5-default libqt5gui5 git zlib1g-dev
mkdir git mkdir git
cd git cd git
git clone https://github.com/PurpleI2P/i2pd.git git clone https://github.com/PurpleI2P/i2pd-qt.git
cd i2pd/qt/i2pd_qt cd i2pd-qt
qmake
make USE_UPNP=yes
``` ```
For release build,
`qmake`
For debug build,
`qmake i2pd_qt.pro "CONFIG += debug"`
And when `qmake` completed, run:
`make USE_UPNP=yes`
## Building a Flatpak package ## Building a Flatpak package
``` ```