-
Notifications
You must be signed in to change notification settings - Fork 140
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
051f797
commit f054e53
Showing
4 changed files
with
82 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,80 @@ | ||
#------------------------------------------------- | ||
# | ||
# Project created by QtCreator 2018-10-05T09:54:45 | ||
# | ||
#------------------------------------------------- | ||
|
||
QT += core gui network | ||
|
||
CONFIG += precompile_header | ||
|
||
PRECOMPILED_HEADER = src/precompiled.h | ||
|
||
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets | ||
|
||
TARGET = zec-qt-wallet | ||
APP_VERSION=\\\"0.2.2\\\" | ||
|
||
|
||
TEMPLATE = app | ||
|
||
# The following define makes your compiler emit warnings if you use | ||
# any feature of Qt which has been marked as deprecated (the exact warnings | ||
# depend on your compiler). Please consult the documentation of the | ||
# deprecated API in order to know how to port your code away from it. | ||
DEFINES += \ | ||
QT_DEPRECATED_WARNINGS \ | ||
APP_VERSION=$$APP_VERSION | ||
|
||
|
||
INCLUDEPATH += src/3rdparty/ | ||
|
||
RESOURCES = application.qrc | ||
|
||
MOC_DIR = bin | ||
OBJECTS_DIR = bin | ||
UI_DIR = src | ||
|
||
CONFIG += c++14 | ||
|
||
SOURCES += \ | ||
src/main.cpp \ | ||
src/mainwindow.cpp \ | ||
src/rpc.cpp \ | ||
src/balancestablemodel.cpp \ | ||
src/unspentoutput.cpp \ | ||
src/3rdparty/qrcode/BitBuffer.cpp \ | ||
src/3rdparty/qrcode/QrCode.cpp \ | ||
src/3rdparty/qrcode/QrSegment.cpp \ | ||
src/settings.cpp \ | ||
src/sendtab.cpp \ | ||
src/senttxstore.cpp \ | ||
src/txtablemodel.cpp \ | ||
src/utils.cpp | ||
|
||
HEADERS += \ | ||
src/mainwindow.h \ | ||
src/precompiled.h \ | ||
src/rpc.h \ | ||
src/balancestablemodel.h \ | ||
src/unspentoutput.h \ | ||
src/3rdparty/qrcode/BitBuffer.hpp \ | ||
src/3rdparty/qrcode/QrCode.hpp \ | ||
src/3rdparty/qrcode/QrSegment.hpp \ | ||
src/3rdparty/json/json.hpp \ | ||
src/settings.h \ | ||
src/txtablemodel.h \ | ||
src/senttxstore.h \ | ||
src/utils.h | ||
|
||
FORMS += \ | ||
src/mainwindow.ui \ | ||
src/settings.ui \ | ||
src/about.ui \ | ||
src/confirm.ui | ||
|
||
# Default rules for deployment. | ||
qnx: target.path = /tmp/$${TARGET}/bin | ||
else: unix:!android: target.path = /opt/$${TARGET}/bin | ||
!isEmpty(target.path): INSTALLS += target | ||
|