8c4d81484c
Noticed the warnings when building the manual tests. Pick-to: 6.5 Change-Id: I7f927f42f11d234ec3c980f36d8e12c0c49be712 Reviewed-by: Joerg Bornemann <joerg.bornemann@qt.io>
24 lines
394 B
CMake
24 lines
394 B
CMake
# Copyright (C) 2022 The Qt Company Ltd.
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
qt_internal_add_manual_test(tex1d
|
|
GUI
|
|
SOURCES
|
|
tex1d.cpp
|
|
LIBRARIES
|
|
Qt::Gui
|
|
Qt::GuiPrivate
|
|
)
|
|
|
|
set(tex1d_resource_files
|
|
"texture1d.vert.qsb"
|
|
"texture1d.frag.qsb"
|
|
)
|
|
|
|
qt_internal_add_resource(tex1d "tex1d"
|
|
PREFIX
|
|
"/"
|
|
FILES
|
|
${tex1d_resource_files}
|
|
)
|