summaryrefslogtreecommitdiffstats
path: root/tests/auto/gui
diff options
context:
space:
mode:
authorLeander Beernaert <leander.beernaert@qt.io>2019-10-28 10:04:58 +0100
committerLeander Beernaert <leander.beernaert@qt.io>2019-10-28 12:05:17 +0000
commitb0aee08ff6fb57ec17c7c5b24f87f181af28f3ab (patch)
tree7c18f8b6f0fb6a758e4c25b41815fdbd66af3f2d /tests/auto/gui
parentc3de886b61878c072e05b1067a3966148ea8d15a (diff)
Convert qvulkan test
Change-Id: I395fa1c08bb67d65604962883dce3b390c604b9c Reviewed-by: Qt CMake Build Bot Reviewed-by: Alexandru Croitor <alexandru.croitor@qt.io>
Diffstat (limited to 'tests/auto/gui')
-rw-r--r--tests/auto/gui/CMakeLists.txt2
-rw-r--r--tests/auto/gui/qvulkan/CMakeLists.txt15
2 files changed, 16 insertions, 1 deletions
diff --git a/tests/auto/gui/CMakeLists.txt b/tests/auto/gui/CMakeLists.txt
index 4b93bc2c85..3f64f6758d 100644
--- a/tests/auto/gui/CMakeLists.txt
+++ b/tests/auto/gui/CMakeLists.txt
@@ -15,5 +15,5 @@ if(QT_FEATURE_opengl AND NOT APPLE_UIKIT AND NOT WINRT)
add_subdirectory(qopengl)
endif()
if(QT_FEATURE_vulkan AND NOT APPLE_UIKIT)
- # add_subdirectory(qvulkan) # special case missing project
+ add_subdirectory(qvulkan)
endif()
diff --git a/tests/auto/gui/qvulkan/CMakeLists.txt b/tests/auto/gui/qvulkan/CMakeLists.txt
new file mode 100644
index 0000000000..ad8a9f9e67
--- /dev/null
+++ b/tests/auto/gui/qvulkan/CMakeLists.txt
@@ -0,0 +1,15 @@
+# Generated from qvulkan.pro.
+
+#####################################################################
+## tst_qvulkan Test:
+#####################################################################
+
+add_qt_test(tst_qvulkan
+ SOURCES
+ tst_qvulkan.cpp
+ LIBRARIES
+ Qt::CorePrivate
+ Qt::GuiPrivate
+ PUBLIC_LIBRARIES
+ Qt::Gui
+)