From 20d068d74205bce378fd5ea03c276728465c558a Mon Sep 17 00:00:00 2001 From: MinyazevR Date: Wed, 11 Dec 2024 23:48:13 +0300 Subject: [PATCH 1/2] Add PythonQt make check target when testing trikRuntime --- PythonQt/PythonQt.pro | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/PythonQt/PythonQt.pro b/PythonQt/PythonQt.pro index 567fc2d9..372a6866 100644 --- a/PythonQt/PythonQt.pro +++ b/PythonQt/PythonQt.pro @@ -22,6 +22,11 @@ QMAKE_CXXFLAGS -= -Werror=pedantic -pedantic-errors PythonQtFull.depends += PythonQtCore PythonQtCore.subdir = PythonQt/src PythonQtFull.file = PythonQtFull.pro + + tests { + SUBDIRS *= tests + tests.subdir += $$PWD/PythonQt/tests + } } OTHER_FILES += \ From 8618d73c731deb5b42b68edb1eca66ff313ff84c Mon Sep 17 00:00:00 2001 From: MinyazevR Date: Thu, 12 Dec 2024 00:00:04 +0300 Subject: [PATCH 2/2] Add depends for tests --- PythonQt/PythonQt.pro | 1 + 1 file changed, 1 insertion(+) diff --git a/PythonQt/PythonQt.pro b/PythonQt/PythonQt.pro index 372a6866..5bf3b6e1 100644 --- a/PythonQt/PythonQt.pro +++ b/PythonQt/PythonQt.pro @@ -26,6 +26,7 @@ QMAKE_CXXFLAGS -= -Werror=pedantic -pedantic-errors tests { SUBDIRS *= tests tests.subdir += $$PWD/PythonQt/tests + tests.depends += PythonQtFull } }