From d59ca7ac194e8d57177afb1ac89603e22b61b4ec Mon Sep 17 00:00:00 2001 From: Kitsune Ral Date: Thu, 3 Oct 2019 08:16:29 +0900 Subject: qmc-example -> quotest, QMCTest -> TestManager Also: some bits of refactoring in the test code to make it more extensible. Closes #352. --- quotest.pro | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 quotest.pro (limited to 'quotest.pro') diff --git a/quotest.pro b/quotest.pro new file mode 100644 index 00000000..433a2ccc --- /dev/null +++ b/quotest.pro @@ -0,0 +1,13 @@ +TEMPLATE = app + +QT += testlib +CONFIG *= c++1z warn_on object_parallel_to_source + +windows { CONFIG *= console } + +include(libquotient.pri) + +SOURCES += tests/quotest.cpp + +DISTFILES += \ + .valgrind.supp -- cgit v1.2.3 From b9bc0ca1af18cd247a21fe6bc0f644bf7270a770 Mon Sep 17 00:00:00 2001 From: Kitsune Ral Date: Sun, 7 Jun 2020 16:17:48 +0200 Subject: Drop Qt Gui from qmake process --- libquotient.pri | 2 ++ quotest.pro | 5 +++-- 2 files changed, 5 insertions(+), 2 deletions(-) (limited to 'quotest.pro') diff --git a/libquotient.pri b/libquotient.pri index df58d35b..97ac9976 100644 --- a/libquotient.pri +++ b/libquotient.pri @@ -1,4 +1,6 @@ QT += network multimedia +QT -= gui + # TODO: Having moved to Qt 5.12, replace c++1z with c++17 below CONFIG *= c++1z warn_on rtti_off create_prl object_parallel_to_source diff --git a/quotest.pro b/quotest.pro index 433a2ccc..891873af 100644 --- a/quotest.pro +++ b/quotest.pro @@ -1,12 +1,13 @@ TEMPLATE = app +include(libquotient.pri) + QT += testlib + CONFIG *= c++1z warn_on object_parallel_to_source windows { CONFIG *= console } -include(libquotient.pri) - SOURCES += tests/quotest.cpp DISTFILES += \ -- cgit v1.2.3