qt5base-lts/tests/manual/graphicsframecapture/CMakeLists.txt
Hatem ElKharashy 8dee03500e Add Manual test for Graphics Frame Capture
Simple window with a rotating rectangle that can be
captured using QGraphicsFrameCapture.

Task-number: QTBUG-116146
Change-Id: Ia3b6928e469d926c53260ee40ed5af97dd280c08
Reviewed-by: Janne Koskinen <janne.p.koskinen@qt.io>
2023-09-20 10:51:55 +03:00

36 lines
958 B
CMake

# Copyright (C) 2023 The Qt Company Ltd.
# SPDX-License-Identifier: BSD-3-Clause
#####################################################################
## graphicsframecapture Binary:
#####################################################################
qt_internal_add_manual_test(graphicsframecapture
SOURCES
examplewindow.cpp examplewindow.h
main.cpp
window.cpp window.h
LIBRARIES
Qt::Gui
Qt::GuiPrivate
)
# Resources:
set_source_files_properties("../rhi/shared/color.frag.qsb"
PROPERTIES QT_RESOURCE_ALIAS "color.frag.qsb"
)
set_source_files_properties("../rhi/shared/color.vert.qsb"
PROPERTIES QT_RESOURCE_ALIAS "color.vert.qsb"
)
set(graphicsframecapture_resource_files
"../rhi/shared/color.frag.qsb"
"../rhi/shared/color.vert.qsb"
)
qt_internal_add_resource(graphicsframecapture "graphicsframecapture"
PREFIX
"/"
FILES
${graphicsframecapture_resource_files}
)