2020-05-11 19:53:44 +00:00
|
|
|
QT += quick
|
2020-09-22 19:16:44 +00:00
|
|
|
QT += webchannel
|
2020-05-11 19:53:44 +00:00
|
|
|
|
|
|
|
# The following define makes your compiler emit warnings if you use
|
|
|
|
# any Qt feature that has been marked deprecated (the exact warnings
|
|
|
|
# depend on your compiler). Refer to the documentation for the
|
|
|
|
# deprecated API to know how to port your code away from it.
|
|
|
|
DEFINES += QT_DEPRECATED_WARNINGS
|
|
|
|
|
|
|
|
# You can also make your code fail to compile if it uses deprecated APIs.
|
|
|
|
# In order to do so, uncomment the following line.
|
|
|
|
# You can also select to disable deprecated APIs only up to a certain version of Qt.
|
|
|
|
#DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0
|
|
|
|
|
2020-06-18 20:11:12 +00:00
|
|
|
lupdate_only{
|
|
|
|
SOURCES = *.qml \
|
|
|
|
app/*.qml \
|
2021-07-23 09:22:14 +00:00
|
|
|
imports/*.qml \
|
2021-10-27 21:27:49 +00:00
|
|
|
imports/shared/*.qml \
|
|
|
|
imports/shared/controls/*.qml \
|
|
|
|
imports/shared/keycard/*.qml \
|
|
|
|
imports/shared/panels/*.qml \
|
|
|
|
imports/shared/popups/*.qml \
|
|
|
|
imports/shared/status/*.qml \
|
|
|
|
imports/shared/views/*.qml \
|
2020-06-18 20:11:12 +00:00
|
|
|
app/AppLayouts/*.qml \
|
2020-09-22 15:12:48 +00:00
|
|
|
app/AppLayouts/Browser/*.qml \
|
2020-06-18 20:11:12 +00:00
|
|
|
app/AppLayouts/Chat/*.qml \
|
2020-12-11 20:38:10 +00:00
|
|
|
app/AppLayouts/Chat/CommunityComponents/*.qml \
|
2020-06-18 20:11:12 +00:00
|
|
|
app/AppLayouts/Chat/ChatColumn/*.qml \
|
2020-08-26 15:52:26 +00:00
|
|
|
app/AppLayouts/Chat/ChatColumn/ChatComponents/*.qml \
|
|
|
|
app/AppLayouts/Chat/ChatColumn/MessageComponents/*.qml \
|
2020-09-28 18:09:44 +00:00
|
|
|
app/AppLayouts/Chat/ChatColumn/MessageComponents/TransactionComponents/*.qml \
|
2020-07-08 17:54:11 +00:00
|
|
|
app/AppLayouts/Chat/ContactsColumn/*.qml \
|
2020-06-18 20:11:12 +00:00
|
|
|
app/AppLayouts/Chat/components/*.qml \
|
|
|
|
app/AppLayouts/Node/*.qml \
|
|
|
|
app/AppLayouts/Profile/*.qml \
|
|
|
|
app/AppLayouts/Profile/LeftTab/*.qml \
|
2020-08-26 15:52:26 +00:00
|
|
|
app/AppLayouts/Profile/LeftTab/components/*.qml \
|
2020-06-18 20:11:12 +00:00
|
|
|
app/AppLayouts/Profile/Sections/*.qml \
|
2021-03-15 20:51:15 +00:00
|
|
|
app/AppLayouts/Profile/Sections/BrowserModals/*.qml \
|
2020-06-18 20:11:12 +00:00
|
|
|
app/AppLayouts/Profile/Sections/Contacts/*.qml \
|
2021-03-15 20:51:15 +00:00
|
|
|
app/AppLayouts/Profile/Sections/Data/*.qml \
|
2020-09-14 12:12:47 +00:00
|
|
|
app/AppLayouts/Profile/Sections/Ens/*.qml \
|
2021-03-15 20:51:15 +00:00
|
|
|
app/AppLayouts/Profile/Sections/Privileges/*.qml \
|
2020-12-17 10:40:37 +00:00
|
|
|
app/AppLayouts/Timeline/*.qml\
|
2020-06-18 20:11:12 +00:00
|
|
|
app/AppLayouts/Wallet/*.qml \
|
2020-06-04 20:56:44 +00:00
|
|
|
app/AppLayouts/Wallet/components/*.qml \
|
2020-08-18 19:10:30 +00:00
|
|
|
app/AppLayouts/Wallet/components/collectiblesComponents/*.qml \
|
2020-09-10 04:20:27 +00:00
|
|
|
app/AppLayouts/Wallet/data/Currencies.qml \
|
2020-06-18 20:11:12 +00:00
|
|
|
}
|
2020-05-11 19:53:44 +00:00
|
|
|
|
2020-07-07 19:25:20 +00:00
|
|
|
TRANSLATIONS += \
|
|
|
|
i18n/base.ts \
|
2020-07-08 16:56:51 +00:00
|
|
|
i18n/qml_en.ts \
|
|
|
|
i18n/qml_fr.ts \
|
|
|
|
i18n/qml_it.ts \
|
|
|
|
i18n/qml_ko.ts \
|
|
|
|
i18n/qml_ru.ts \
|
|
|
|
i18n/qml_tr.ts \
|
2021-02-18 16:35:35 +00:00
|
|
|
i18n/qml_es.ts \
|
|
|
|
i18n/qml_id.ts \
|
|
|
|
i18n/qml_de.ts \
|
|
|
|
i18n/qml_pt_BR.ts \
|
|
|
|
i18n/qml_fil.ts \
|
2020-07-08 16:56:51 +00:00
|
|
|
i18n/qml_zh.ts \
|
|
|
|
i18n/qml_zh_TW.ts \
|
2021-02-18 16:35:35 +00:00
|
|
|
i18n/qml_ar.ts \
|
|
|
|
i18n/qml_ur.ts
|
2020-06-18 20:55:01 +00:00
|
|
|
|
2020-05-11 19:53:44 +00:00
|
|
|
RESOURCES += \
|
2020-05-28 14:58:25 +00:00
|
|
|
imports/Constants.qml \
|
2020-07-02 15:14:31 +00:00
|
|
|
imports/Style.qml \
|
2020-05-11 19:53:44 +00:00
|
|
|
main.qml
|
|
|
|
|
2021-10-18 11:11:11 +00:00
|
|
|
OTHER_FILES += $$files("$$PWD/*.qml", true)
|
|
|
|
|
2020-05-11 19:53:44 +00:00
|
|
|
# Additional import path used to resolve QML modules in Qt Creator's code model
|
2021-10-18 08:03:39 +00:00
|
|
|
QML_IMPORT_PATH = $$PWD/imports \
|
|
|
|
$$PWD/StatusQ/src
|
2020-05-11 19:53:44 +00:00
|
|
|
|
|
|
|
# Additional import path used to resolve QML modules just for Qt Quick Designer
|
|
|
|
QML_DESIGNER_IMPORT_PATH = $$PWD/imports
|
|
|
|
|
|
|
|
# Default rules for deployment.
|
|
|
|
qnx: target.path = /tmp/$${TARGET}/bin
|
|
|
|
else: unix:!android: target.path = /opt/$${TARGET}/bin
|
|
|
|
!isEmpty(target.path): INSTALLS += target
|
|
|
|
|
2021-09-02 07:59:11 +00:00
|
|
|
RESOURCES += resources.qrc
|