0e8d347c6a
The idea being that hellovulkantriangle demonstrates the same things. As a getting started tutorial hellovulkanwindow is the ideal example, but then again QVulkanWindow is not something we want to promote much in Qt 6. Some of the docs are moved to hellovulkantriangle. Pick-to: 6.5 Change-Id: Icbfff70b4a4c7e4c0863a937f3c16038c0b03fbe Reviewed-by: Christian Strømme <christian.stromme@qt.io>
11 lines
311 B
CMake
11 lines
311 B
CMake
# Copyright (C) 2022 The Qt Company Ltd.
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
qt_internal_add_example(hellovulkantriangle)
|
|
if(TARGET Qt6::Widgets)
|
|
qt_internal_add_example(hellovulkanwidget)
|
|
endif()
|
|
if(TARGET Qt6::Concurrent AND TARGET Qt6::Widgets)
|
|
qt_internal_add_example(hellovulkancubes)
|
|
endif()
|