mirror of
https://github.com/crystalidea/qt6windows7.git
synced 2024-11-23 12:07:03 +08:00
25 lines
403 B
Prolog
25 lines
403 B
Prolog
|
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
|