97bfacf1e2
Pick-to: 6.5 Change-Id: I8d106554bb86ac1ec9bb7a4083de4c376bcbab1d Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org> Reviewed-by: Joerg Bornemann <joerg.bornemann@qt.io>
39 lines
961 B
CMake
39 lines
961 B
CMake
# Copyright (C) 2022 The Qt Company Ltd.
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
#####################################################################
|
|
## texuploads Binary:
|
|
#####################################################################
|
|
|
|
qt_internal_add_manual_test(texuploads
|
|
GUI
|
|
SOURCES
|
|
texuploads.cpp
|
|
LIBRARIES
|
|
Qt::Gui
|
|
Qt::GuiPrivate
|
|
)
|
|
|
|
# Resources:
|
|
set_source_files_properties("../shared/qt256.png"
|
|
PROPERTIES QT_RESOURCE_ALIAS "qt256.png"
|
|
)
|
|
set_source_files_properties("../shared/texture.frag.qsb"
|
|
PROPERTIES QT_RESOURCE_ALIAS "texture.frag.qsb"
|
|
)
|
|
set_source_files_properties("../shared/texture.vert.qsb"
|
|
PROPERTIES QT_RESOURCE_ALIAS "texture.vert.qsb"
|
|
)
|
|
set(texuploads_resource_files
|
|
"../shared/qt256.png"
|
|
"../shared/texture.frag.qsb"
|
|
"../shared/texture.vert.qsb"
|
|
)
|
|
|
|
qt_internal_add_resource(texuploads "texuploads"
|
|
PREFIX
|
|
"/"
|
|
FILES
|
|
${texuploads_resource_files}
|
|
)
|