qt5base-lts/tests/baseline/stylesheet/CMakeLists.txt
Tor Arne Vestbø 2436e259ce Deprecate QApplication::setActiveWindow() and mark as internal
The function is used the internal window activation machinery and
should not be called by user code.

Many tests still use this function, and should be ported over to
QWidget::activateWindow(). For now they are using the private
helper in QApplicationPrivate, so that we can progress with the
public API deprecation.

Change-Id: I29f1575acf9efdcbae4c005ee9b2eb1bb0c8e5b5
Reviewed-by: Volker Hilsheimer <volker.hilsheimer@qt.io>
Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org>
2022-08-27 20:22:29 +02:00

34 lines
924 B
CMake

# Copyright (C) 2022 The Qt Company Ltd.
# SPDX-License-Identifier: BSD-3-Clause
file(GLOB_RECURSE test_data_glob
RELATIVE ${CMAKE_CURRENT_SOURCE_DIR}
qss/*)
list(APPEND test_data ${test_data_glob})
qt_internal_add_test(tst_baseline_stylesheet
SOURCES
../shared/baselineprotocol.cpp ../shared/baselineprotocol.h ../shared/lookup3.cpp
../shared/qbaselinetest.cpp ../shared/qbaselinetest.h
../shared/qwidgetbaselinetest.cpp ../shared/qwidgetbaselinetest.h
tst_baseline_stylesheet.cpp
INCLUDE_DIRECTORIES
../shared
LIBRARIES
Qt::Gui
Qt::Widgets
Qt::WidgetsPrivate
Qt::Network
TESTDATA ${test_data}
)
qt6_add_resources(tst_baseline_stylesheet "tst_baseline_stylesheet"
PREFIX
"/"
FILES
"icons/align-center.png"
"icons/align-left.png"
"icons/align-right.png"
"icons/arrow-up.png"
)