monero-gui/monero-core.pro

61 lines
1.1 KiB
Prolog
Raw Normal View History

2014-07-07 17:08:30 +00:00
TEMPLATE = app
QT += qml quick widgets
HEADERS += \
filter.h \
clipboardAdapter.h \
oscursor.h
2014-07-07 17:08:30 +00:00
SOURCES += main.cpp \
filter.cpp \
clipboardAdapter.cpp \
oscursor.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
}
# translations files;
TRANSLATIONS = monero-core_en.ts \ # English (could be untranslated)
monero-core_de.ts # Deutsch
# extra make targets for lupdate and lrelease invocation
lupdate.commands = lupdate $$_PRO_FILE_
lupdate.depends = $$SOURCES $$HEADERS $$TRANSLATIONS
lrelease.commands = lrelease $$_PRO_FILE_
lrelease.depends = lupdate
translate.commands = $(COPY) *.qm ${DESTDIR}
translate.depends = lrelease
QMAKE_EXTRA_TARGETS += lupdate lrelease
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)
DISTFILES += \
wizard/WizardManageWalletUI.qml \
.gitignore