2020-05-11 15:53:44 -04:00
|
|
|
QT += quick
|
2020-09-22 15:16:44 -04:00
|
|
|
QT += webchannel
|
2020-05-11 15:53:44 -04: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 16:11:12 -04:00
|
|
|
lupdate_only{
|
|
|
|
SOURCES = *.qml \
|
|
|
|
app/*.qml \
|
2021-07-23 12:22:14 +03:00
|
|
|
imports/*.qml \
|
2021-10-28 00:27:49 +03: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 16:11:12 -04:00
|
|
|
app/AppLayouts/*.qml \
|
2020-09-22 10:12:48 -05:00
|
|
|
app/AppLayouts/Browser/*.qml \
|
2020-06-18 16:11:12 -04:00
|
|
|
app/AppLayouts/Chat/*.qml \
|
2020-12-11 15:38:10 -05:00
|
|
|
app/AppLayouts/Chat/CommunityComponents/*.qml \
|
2020-06-18 16:11:12 -04:00
|
|
|
app/AppLayouts/Chat/ChatColumn/*.qml \
|
2020-08-26 11:52:26 -04:00
|
|
|
app/AppLayouts/Chat/ChatColumn/ChatComponents/*.qml \
|
|
|
|
app/AppLayouts/Chat/ChatColumn/MessageComponents/*.qml \
|
2020-09-28 14:09:44 -04:00
|
|
|
app/AppLayouts/Chat/ChatColumn/MessageComponents/TransactionComponents/*.qml \
|
2020-07-08 13:54:11 -04:00
|
|
|
app/AppLayouts/Chat/ContactsColumn/*.qml \
|
2020-06-18 16:11:12 -04:00
|
|
|
app/AppLayouts/Chat/components/*.qml \
|
|
|
|
app/AppLayouts/Node/*.qml \
|
|
|
|
app/AppLayouts/Profile/*.qml \
|
|
|
|
app/AppLayouts/Profile/LeftTab/*.qml \
|
2020-08-26 11:52:26 -04:00
|
|
|
app/AppLayouts/Profile/LeftTab/components/*.qml \
|
2020-06-18 16:11:12 -04:00
|
|
|
app/AppLayouts/Profile/Sections/*.qml \
|
2021-03-15 16:51:15 -04:00
|
|
|
app/AppLayouts/Profile/Sections/BrowserModals/*.qml \
|
2020-06-18 16:11:12 -04:00
|
|
|
app/AppLayouts/Profile/Sections/Contacts/*.qml \
|
2021-03-15 16:51:15 -04:00
|
|
|
app/AppLayouts/Profile/Sections/Data/*.qml \
|
2020-09-14 14:12:47 +02:00
|
|
|
app/AppLayouts/Profile/Sections/Ens/*.qml \
|
2021-03-15 16:51:15 -04:00
|
|
|
app/AppLayouts/Profile/Sections/Privileges/*.qml \
|
2020-12-17 11:40:37 +01:00
|
|
|
app/AppLayouts/Timeline/*.qml\
|
2020-06-18 16:11:12 -04:00
|
|
|
app/AppLayouts/Wallet/*.qml \
|
2020-06-04 15:56:44 -05:00
|
|
|
app/AppLayouts/Wallet/components/*.qml \
|
2020-08-18 15:10:30 -04:00
|
|
|
app/AppLayouts/Wallet/components/collectiblesComponents/*.qml \
|
2020-09-10 06:20:27 +02:00
|
|
|
app/AppLayouts/Wallet/data/Currencies.qml \
|
2020-06-18 16:11:12 -04:00
|
|
|
}
|
2020-05-11 15:53:44 -04:00
|
|
|
|
2020-07-07 15:25:20 -04:00
|
|
|
TRANSLATIONS += \
|
|
|
|
i18n/base.ts \
|
2020-07-08 12:56:51 -04: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 11:35:35 -05: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 12:56:51 -04:00
|
|
|
i18n/qml_zh.ts \
|
|
|
|
i18n/qml_zh_TW.ts \
|
2021-02-18 11:35:35 -05:00
|
|
|
i18n/qml_ar.ts \
|
|
|
|
i18n/qml_ur.ts
|
2020-06-18 16:55:01 -04:00
|
|
|
|
2020-05-11 15:53:44 -04:00
|
|
|
RESOURCES += \
|
2020-05-28 10:58:25 -04:00
|
|
|
imports/Constants.qml \
|
2020-07-02 11:14:31 -04:00
|
|
|
imports/Style.qml \
|
2020-05-11 15:53:44 -04:00
|
|
|
main.qml
|
|
|
|
|
2021-10-18 14:11:11 +03:00
|
|
|
OTHER_FILES += $$files("$$PWD/*.qml", true)
|
|
|
|
|
2020-05-11 15:53:44 -04:00
|
|
|
# Additional import path used to resolve QML modules in Qt Creator's code model
|
2021-10-18 11:03:39 +03:00
|
|
|
QML_IMPORT_PATH = $$PWD/imports \
|
|
|
|
$$PWD/StatusQ/src
|
2020-05-11 15:53:44 -04: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 10:59:11 +03:00
|
|
|
RESOURCES += resources.qrc
|