2014-07-07 17:08:30 +00:00
|
|
|
TEMPLATE = app
|
|
|
|
|
|
|
|
QT += qml quick widgets
|
|
|
|
|
2016-05-17 13:03:59 +00:00
|
|
|
WALLET_ROOT=$$PWD/bitmonero
|
|
|
|
|
2016-03-08 09:08:24 +00:00
|
|
|
CONFIG += c++11
|
2016-02-23 15:59:26 +00:00
|
|
|
|
2016-05-17 13:03:59 +00:00
|
|
|
INCLUDEPATH += $$WALLET_ROOT/include
|
|
|
|
|
|
|
|
message($$INCLUDEPATH)
|
|
|
|
|
2016-01-25 18:36:33 +00:00
|
|
|
HEADERS += \
|
|
|
|
filter.h \
|
2016-02-03 15:37:10 +00:00
|
|
|
clipboardAdapter.h \
|
2016-02-23 15:59:26 +00:00
|
|
|
oscursor.h \
|
|
|
|
WalletManager.h \
|
|
|
|
Wallet.h
|
2016-01-25 18:36:33 +00:00
|
|
|
|
|
|
|
|
2014-07-07 17:08:30 +00:00
|
|
|
SOURCES += main.cpp \
|
2014-07-16 12:40:09 +00:00
|
|
|
filter.cpp \
|
2016-02-03 15:37:10 +00:00
|
|
|
clipboardAdapter.cpp \
|
2016-02-23 15:59:26 +00:00
|
|
|
oscursor.cpp \
|
|
|
|
WalletManager.cpp \
|
|
|
|
Wallet.cpp
|
2014-07-07 17:08:30 +00:00
|
|
|
|
2016-01-29 19:01:52 +00:00
|
|
|
lupdate_only {
|
|
|
|
SOURCES = *.qml \
|
|
|
|
components/*.qml \
|
|
|
|
pages/*.qml \
|
|
|
|
wizard/*.qml
|
|
|
|
}
|
|
|
|
|
2016-05-17 13:03:59 +00:00
|
|
|
LIBS += -L$$WALLET_ROOT/lib -lwallet
|
|
|
|
|
2016-01-29 19:01:52 +00:00
|
|
|
# translations files;
|
|
|
|
TRANSLATIONS = monero-core_en.ts \ # English (could be untranslated)
|
|
|
|
monero-core_de.ts # Deutsch
|
|
|
|
|
|
|
|
|
|
|
|
# extra make targets for lupdate and lrelease invocation
|
2016-02-06 12:58:55 +00:00
|
|
|
# use "make lupdate" to update *.ts files and "make lrelease" to generate *.qm files
|
2016-01-29 19:01:52 +00:00
|
|
|
lupdate.commands = lupdate $$_PRO_FILE_
|
2016-02-06 12:49:31 +00:00
|
|
|
lupdate.depends = $$SOURCES $$HEADERS
|
2016-01-29 19:01:52 +00:00
|
|
|
lrelease.commands = lrelease $$_PRO_FILE_
|
|
|
|
lrelease.depends = lupdate
|
|
|
|
translate.commands = $(COPY) *.qm ${DESTDIR}
|
|
|
|
translate.depends = lrelease
|
|
|
|
|
|
|
|
QMAKE_EXTRA_TARGETS += lupdate lrelease
|
|
|
|
|
|
|
|
|
|
|
|
|
2016-01-25 18:36:33 +00:00
|
|
|
CONFIG(release, debug|release) {
|
|
|
|
DESTDIR=release
|
|
|
|
}
|
|
|
|
|
|
|
|
CONFIG(debug, debug|release) {
|
|
|
|
DESTDIR=debug
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-07-07 17:08:30 +00:00
|
|
|
RESOURCES += qml.qrc
|
|
|
|
|
|
|
|
# Additional import path used to resolve QML modules in Qt Creator's code model
|
|
|
|
QML_IMPORT_PATH =
|
|
|
|
|
|
|
|
# Default rules for deployment.
|
|
|
|
include(deployment.pri)
|
|
|
|
|
2016-02-06 16:19:54 +00:00
|
|
|
|
2016-02-06 12:58:55 +00:00
|
|
|
|
|
|
|
|
|
|
|
OTHER_FILES += \
|
2016-02-06 12:49:31 +00:00
|
|
|
.gitignore \
|
2016-02-06 12:58:55 +00:00
|
|
|
monero-core_de.ts \
|
|
|
|
monero-core_en.ts
|
|
|
|
|
2016-02-23 15:59:26 +00:00
|
|
|
DISTFILES += \
|
|
|
|
notes.txt
|