summaryrefslogtreecommitdiffstats
path: root/tests/auto/corelib/kernel
diff options
context:
space:
mode:
authorSimon Hausmann <simon.hausmann@qt.io>2020-03-26 09:37:29 +0100
committerSimon Hausmann <simon.hausmann@qt.io>2020-03-27 13:29:47 +0100
commit96de3e26dbd14be6e43db7116c3ce815f9fc9d4b (patch)
treeca56d86560d9614880b84c1dc8676e30c04cce6f /tests/auto/corelib/kernel
parent80be47ae06e979a4736b6f86c0ee043d61008ea3 (diff)
Add QProperty tests to the cmake build
Change-Id: I043ea1db316618871b387213ee379075d756d0b5 Reviewed-by: Alexandru Croitor <alexandru.croitor@qt.io>
Diffstat (limited to 'tests/auto/corelib/kernel')
-rw-r--r--tests/auto/corelib/kernel/CMakeLists.txt3
-rw-r--r--tests/auto/corelib/kernel/qproperty/CMakeLists.txt12
2 files changed, 15 insertions, 0 deletions
diff --git a/tests/auto/corelib/kernel/CMakeLists.txt b/tests/auto/corelib/kernel/CMakeLists.txt
index c72018db6c..426a471a66 100644
--- a/tests/auto/corelib/kernel/CMakeLists.txt
+++ b/tests/auto/corelib/kernel/CMakeLists.txt
@@ -38,3 +38,6 @@ add_subdirectory(qvariant)
if(win32_x_ AND NOT WINRT)
add_subdirectory(qwineventnotifier)
endif()
+if(QT_FEATURE_private_tests)
+ add_subdirectory(qproperty)
+endif()
diff --git a/tests/auto/corelib/kernel/qproperty/CMakeLists.txt b/tests/auto/corelib/kernel/qproperty/CMakeLists.txt
new file mode 100644
index 0000000000..5521111ef8
--- /dev/null
+++ b/tests/auto/corelib/kernel/qproperty/CMakeLists.txt
@@ -0,0 +1,12 @@
+# Generated from qproperty.pro.
+
+#####################################################################
+## tst_qproperty Test:
+#####################################################################
+
+qt_add_test(tst_qproperty
+ SOURCES
+ tst_qproperty.cpp
+ PUBLIC_LIBRARIES
+ Qt::CorePrivate
+)