2022-07-05 11:26:52 +00:00
|
|
|
# Copyright (C) 2022 The Qt Company Ltd.
|
2022-08-19 13:21:34 +00:00
|
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
2022-07-05 11:26:52 +00:00
|
|
|
|
2019-05-02 07:33:45 +00:00
|
|
|
#####################################################################
|
|
|
|
## tst_qwizard Test:
|
|
|
|
#####################################################################
|
|
|
|
|
2023-06-29 15:28:53 +00:00
|
|
|
if(NOT QT_BUILD_STANDALONE_TESTS AND NOT QT_BUILDING_QT)
|
|
|
|
cmake_minimum_required(VERSION 3.16)
|
|
|
|
project(tst_qwizard LANGUAGES CXX)
|
|
|
|
find_package(Qt6BuildInternals REQUIRED COMPONENTS STANDALONE_TEST)
|
|
|
|
endif()
|
|
|
|
|
2019-05-02 07:33:45 +00:00
|
|
|
# Resources:
|
2019-11-12 16:45:04 +00:00
|
|
|
set(qwizard_resource_files
|
|
|
|
"images/background.png"
|
|
|
|
"images/banner.png"
|
|
|
|
"images/logo.png"
|
|
|
|
"images/watermark.png"
|
|
|
|
)
|
|
|
|
|
2022-02-09 15:24:24 +00:00
|
|
|
qt_internal_add_test(tst_qwizard
|
|
|
|
SOURCES
|
|
|
|
tst_qwizard.cpp
|
|
|
|
tst_qwizard_2.cpp
|
2022-07-25 15:50:38 +00:00
|
|
|
LIBRARIES
|
2022-02-09 15:24:24 +00:00
|
|
|
Qt::Gui
|
|
|
|
Qt::Widgets
|
2022-04-21 18:43:33 +00:00
|
|
|
Qt::WidgetsPrivate
|
2022-02-09 15:24:24 +00:00
|
|
|
TESTDATA ${qwizard_resource_files}
|
|
|
|
BUILTIN_TESTDATA
|
2019-08-09 10:47:55 +00:00
|
|
|
)
|
2019-05-02 07:33:45 +00:00
|
|
|
|