summaryrefslogtreecommitdiffstats
path: root/examples/vulkan/hellovulkancubes/hellovulkancubes.pro
diff options
context:
space:
mode:
authorLaszlo Agocs <laszlo.agocs@qt.io>2017-03-24 14:54:24 +0100
committerLaszlo Agocs <laszlo.agocs@qt.io>2017-03-29 10:58:06 +0000
commitc72b821b5911842757a3929fb287471ad5d457ea (patch)
tree07aace2498733596acc411cf096fcff998485c42 /examples/vulkan/hellovulkancubes/hellovulkancubes.pro
parente7a7931ba1e4fd6d80674c73e6e9e9a8099b9391 (diff)
Add the Vulkan cube example
Features a little bit more than a cube, though. Change-Id: I636d4875ba9ccf722ed3caab97f14570be785748 Reviewed-by: Andy Nichols <andy.nichols@qt.io>
Diffstat (limited to 'examples/vulkan/hellovulkancubes/hellovulkancubes.pro')
-rw-r--r--examples/vulkan/hellovulkancubes/hellovulkancubes.pro24
1 files changed, 24 insertions, 0 deletions
diff --git a/examples/vulkan/hellovulkancubes/hellovulkancubes.pro b/examples/vulkan/hellovulkancubes/hellovulkancubes.pro
new file mode 100644
index 0000000000..f9a9c3cff1
--- /dev/null
+++ b/examples/vulkan/hellovulkancubes/hellovulkancubes.pro
@@ -0,0 +1,24 @@
+QT += widgets concurrent
+
+HEADERS += \
+ mainwindow.h \
+ vulkanwindow.h \
+ renderer.h \
+ mesh.h \
+ shader.h \
+ camera.h
+
+SOURCES += \
+ main.cpp \
+ mainwindow.cpp \
+ vulkanwindow.cpp \
+ renderer.cpp \
+ mesh.cpp \
+ shader.cpp \
+ camera.cpp
+
+RESOURCES += hellovulkancubes.qrc
+
+# install
+target.path = $$[QT_INSTALL_EXAMPLES]/vulkan/hellovulkancubes
+INSTALLS += target