From 0380d0a89d5543723bf8d363e2f5245a6fcf3eca Mon Sep 17 00:00:00 2001 From: "B.Melnik" Date: Mon, 18 Oct 2021 10:55:05 +0300 Subject: [PATCH] Add highlighting and compiler --- tests.qrc | 15 +++++++++++++++ ui-tests.pro | 7 ++++++- 2 files changed, 21 insertions(+), 1 deletion(-) create mode 100644 tests.qrc diff --git a/tests.qrc b/tests.qrc new file mode 100644 index 0000000..dd8d1d3 --- /dev/null +++ b/tests.qrc @@ -0,0 +1,15 @@ + + + tst_choose_chat_name_modal.qml + tst_get_started_modal.qml + tst_initialtest.qml + tst_onboarding_choose_chat_name_modal.qml + tst_profile_popup.qml + base/ChatsModelData.qml + base/Helpers.qml + base/LegacyModalsHelpers.qml + base/ModalHelpers.qml + base/ProfileModelData.qml + base/WindowTestCase.qml + + diff --git a/ui-tests.pro b/ui-tests.pro index a07b316..b0f48a6 100644 --- a/ui-tests.pro +++ b/ui-tests.pro @@ -1,4 +1,4 @@ -CONFIG += warn_on qmltestcase +CONFIG += warn_on qmltestcase qtquickcompiler TEMPLATE = app @@ -20,9 +20,14 @@ DISTFILES += \ DISTFILES += $$files("status-desktop/ui/*", true) +QML_IMPORT_PATH += status-desktop/ui/ + SOURCES += \ main.cpp \ setup.cpp HEADERS += \ setup.h + +RESOURCES += \ + tests.qrc