mirror of
https://github.com/crystalidea/qt6windows7.git
synced 2024-11-24 04:20:46 +08:00
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}
|
|
)
|