qt6windows7/tests/auto/gui/image/qiconhighdpi/CMakeLists.txt

39 lines
995 B
CMake
Raw Normal View History

2023-10-30 06:33:08 +08:00
# Copyright (C) 2022 The Qt Company Ltd.
# SPDX-License-Identifier: BSD-3-Clause
#####################################################################
## tst_qiconhighdpi Test:
#####################################################################
# Collect test data
file(GLOB_RECURSE test_data_glob
RELATIVE ${CMAKE_CURRENT_SOURCE_DIR}
icons/*)
list(APPEND test_data ${test_data_glob})
qt_internal_add_test(tst_qiconhighdpi
SOURCES
tst_qiconhighdpi.cpp
LIBRARIES
Qt::Gui
TESTDATA ${test_data}
)
# Resources:
set(tst_qiconhighdpi_resource_files
"icons/misc/button.9.png"
"icons/misc/button@2x.9.png"
"icons/testtheme/16x16/actions/appointment-new.png"
"icons/testtheme/22x22/actions/appointment-new.png"
"icons/testtheme/22x22@2/actions/appointment-new.png"
"icons/testtheme/index.theme"
)
qt_internal_add_resource(tst_qiconhighdpi "tst_qiconhighdpi"
PREFIX
"/"
FILES
${tst_qiconhighdpi_resource_files}
)