969cd432f5
Setting up the baseline tests, creating an appearance identifier, and basic image-grabbing functionality doesn't need to be reinvented for each test case that wants to use baseline testing of widget UIs. As a drive-by, remove unneeded Qt 5 meta tags from .pri file. Change-Id: I1562e1b377946305cac018e0f0f0175c2c07cd31 Reviewed-by: Eirik Aavitsland <eirik.aavitsland@qt.io>
30 lines
822 B
CMake
30 lines
822 B
CMake
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
|
|
PUBLIC_LIBRARIES
|
|
Qt::Gui
|
|
Qt::Widgets
|
|
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"
|
|
)
|