1
0
mirror of https://github.com/GOSTSec/gostcoin synced 2025-01-15 17:19:57 +00:00

Updated Bulding wallet on Windows (MSYS) (markdown)

R4SAS 2018-02-12 08:55:17 +03:00
parent 459ae52801
commit d8a7172005

@ -49,10 +49,10 @@ $ export PATH="$PATH:/c/devel/Python27"
#### Building QT #### Building QT
```bash ```bash
cd /c/devel/ cd /c/devel/
$ wget http://download.qt.io/official_releases/qt/5.9/5.9.4/single/qt-everywhere-opensource-src-5.9.4.zip $ wget http://download.qt.io/official_releases/qt/5.9/5.9.2/single/qt-everywhere-opensource-src-5.9.2.zip
$ unzip qt-everywhere-opensource-src-5.9.4.zip $ unzip qt-everywhere-opensource-src-5.9.2.zip
$ cd qt-everywhere-opensource-src-5.9.4 $ cd qt-everywhere-opensource-src-5.9.2
$ CXXFLAGS="--Wno-deprecated-declarations" ./configure -static -release -opensource -confirm-license -platform win32-g++ -prefix "C:\devel\qt5.9.4-static" -nomake examples -nomake tests -nomake tools -opengl desktop -no-angle -make libs -qt-zlib -qt-libpng -qt-libjpeg -qt-freetype -qt-pcre -sql-sqlite $ CXXFLAGS="--Wno-deprecated-declarations" ./configure -static -release -opensource -confirm-license -platform win32-g++ -prefix "C:\devel\qt5.9.2-static" -nomake examples -nomake tests -nomake tools -opengl desktop -no-angle -make libs -qt-zlib -qt-libpng -qt-libjpeg -qt-freetype -qt-pcre -sql-sqlite
$ make -j <threads> && make install $ make -j <threads> && make install
``` ```
@ -69,7 +69,7 @@ $ make -j <threads> && make install
### Build wallet with QT ### Build wallet with QT
```bash ```bash
$ cd ../gostcoin $ cd ../gostcoin
$ export PATH="$PATH:/c/devel/qt5.9.4-static/bin" $ export PATH="$PATH:/c/devel/qt5.9.2-static/bin"
$ qmake RELEASE=1 USE_QRCODE=1 USE_IPV6=1 USE_BUILD_INFO=1 $ qmake RELEASE=1 USE_QRCODE=1 USE_IPV6=1 USE_BUILD_INFO=1
$ make -j <threads> $ make -j <threads>
``` ```