Browse Source

Merge pull request #47 from nonlinear-chaos-order-etc-etal/patch-3

fixes #46
pull/51/head
orignal 3 years ago committed by GitHub
parent
commit
7275382469
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 18
      docs/devs/building/qt-desktop-gui.md

18
docs/devs/building/qt-desktop-gui.md

@ -52,12 +52,22 @@ Then, open Qt Creator. Open `git/i2pd/qt/i2pd_qt/i2pd_qt.pro`; set build make pa @@ -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
mkdir git
cd git
git clone https://github.com/PurpleI2P/i2pd.git
cd i2pd/qt/i2pd_qt
qmake
make USE_UPNP=yes
git clone https://github.com/PurpleI2P/i2pd-qt.git
cd i2pd-qt
```
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
```

Loading…
Cancel
Save