4fb7eebc70
It's unlikely we will ever use pro2cmake at this project stage, so it doesn't make any sense to keep the 'special case' markers in the CMake scripts. Remove them and replace with TODO where needed. Change-Id: I84290c20679dabbfdec3c5937ce0428fecb3e5a7 Reviewed-by: Amir Masoud Abdol <amir.abdol@qt.io> Reviewed-by: Alexandru Croitor <alexandru.croitor@qt.io>
49 lines
1.5 KiB
CMake
49 lines
1.5 KiB
CMake
# Copyright (C) 2022 The Qt Company Ltd.
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
if(NOT CMAKE_CROSSCOMPILING)
|
|
# add_subdirectory(atwrapper) <- does not exist
|
|
endif()
|
|
if(TARGET Qt::Widgets)
|
|
add_subdirectory(gestures)
|
|
add_subdirectory(languagechange)
|
|
add_subdirectory(qfocusevent)
|
|
add_subdirectory(qsharedpointer_and_qwidget)
|
|
# add_subdirectory(windowsmobile) <- does not exist
|
|
endif()
|
|
if(TARGET Qt::Network AND TARGET Qt::Widgets)
|
|
add_subdirectory(qnetworkaccessmanager_and_qprogressdialog)
|
|
endif()
|
|
if(MACOS AND TARGET Qt::Gui AND TARGET Qt::Widgets)
|
|
add_subdirectory(macgui)
|
|
add_subdirectory(macplist)
|
|
add_subdirectory(qaccessibilitymac)
|
|
endif()
|
|
if(TARGET Qt::Network)
|
|
add_subdirectory(networkselftest)
|
|
endif()
|
|
if(QT_FEATURE_accessibility AND TARGET Qt::Gui AND TARGET Qt::Widgets)
|
|
add_subdirectory(qaccessibility)
|
|
endif()
|
|
if(TARGET Qt::Gui)
|
|
add_subdirectory(qcomplextext)
|
|
endif()
|
|
add_subdirectory(qobjectrace)
|
|
add_subdirectory(toolsupport)
|
|
# QTBUG-87670
|
|
if(QT_FEATURE_process AND TARGET Qt::Gui AND NOT ANDROID)
|
|
add_subdirectory(qprocess_and_guieventloop)
|
|
endif()
|
|
if(QT_FEATURE_accessibility_atspi_bridge AND TARGET Qt::Gui AND TARGET Qt::Widgets)
|
|
#add_subdirectory(qaccessibilitylinux) # TODO: This test is broken
|
|
endif()
|
|
if(MACOS AND TARGET Qt::Gui)
|
|
# add_subdirectory(macnativeevents) # TODO: it's disabled in qmake too
|
|
endif()
|
|
if(embedded)
|
|
add_subdirectory(qdirectpainter)
|
|
endif()
|
|
if(QT_FEATURE_xkbcommon AND TARGET Qt::Gui)
|
|
add_subdirectory(xkbkeyboard)
|
|
endif()
|