964765f686
Add basic tests for timers and event processing, for different use cases such as on the main thread, on a secondary thread, and with asyncify. Pick-to: 6.4 Change-Id: Ie0f82b5de97f639867b1e65dbb0ab8b11db86f85 Reviewed-by: Lorn Potter <lorn.potter@gmail.com>
12 lines
350 B
CMake
12 lines
350 B
CMake
# Copyright (C) 2022 The Qt Company Ltd.
|
|
# SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
|
|
|
|
add_subdirectory(asyncify_exec)
|
|
add_subdirectory(eventloop_auto)
|
|
add_subdirectory(main_exec)
|
|
add_subdirectory(main_noexec)
|
|
add_subdirectory(thread_exec)
|
|
if(QT_FEATURE_widgets)
|
|
add_subdirectory(dialog_exec)
|
|
endif()
|