0e56dd2746
Add the boilerplate standalone test prelude to each test, so that they can be opened with an IDE without the qt-cmake-standalone-test script, but directly with qt-cmake or cmake. Boilerplate was added using the following scripts: https://git.qt.io/alcroito/cmake_refactor Manual adjustments were made where the code was inserted in the wrong location. Task-number: QTBUG-93020 Change-Id: I77299f990692b4fe4721a9bc35071608d0d23982 Reviewed-by: Joerg Bornemann <joerg.bornemann@qt.io> Reviewed-by: Amir Masoud Abdol <amir.abdol@qt.io>
45 lines
1.1 KiB
CMake
45 lines
1.1 KiB
CMake
# Copyright (C) 2022 The Qt Company Ltd.
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
if(NOT QT_BUILD_STANDALONE_TESTS AND NOT QT_BUILDING_QT)
|
|
cmake_minimum_required(VERSION 3.16)
|
|
project(tst_qaccessibility LANGUAGES CXX)
|
|
find_package(Qt6BuildInternals REQUIRED COMPONENTS STANDALONE_TEST)
|
|
endif()
|
|
|
|
if(NOT QT_FEATURE_accessibility)
|
|
return()
|
|
endif()
|
|
|
|
#####################################################################
|
|
## tst_qaccessibility Test:
|
|
#####################################################################
|
|
|
|
qt_internal_add_test(tst_qaccessibility
|
|
SOURCES
|
|
accessiblewidgets.h
|
|
tst_qaccessibility.cpp
|
|
LIBRARIES
|
|
Qt::CorePrivate
|
|
Qt::Gui
|
|
Qt::GuiPrivate
|
|
Qt::TestPrivate
|
|
Qt::WidgetsPrivate
|
|
)
|
|
|
|
## Scopes:
|
|
#####################################################################
|
|
|
|
qt_internal_extend_target(tst_qaccessibility CONDITION UNIX AND NOT APPLE AND NOT HAIKU AND NOT INTEGRITY
|
|
LIBRARIES
|
|
m
|
|
)
|
|
|
|
qt_internal_extend_target(tst_qaccessibility CONDITION WIN32
|
|
LIBRARIES
|
|
ole32
|
|
oleacc
|
|
oleaut32
|
|
uuid
|
|
)
|