46b483ace0
E.g. tst_qprocess_and_guieventloop uses write-read-write. This is useful e.g. when not building all of qtbase, but only a specific unittest while hacking code. Change-Id: Id97c6c09c180ba35554d75877a434cb258a6243d Reviewed-by: Thiago Macieira <thiago.macieira@intel.com> Reviewed-by: Alexandru Croitor <alexandru.croitor@qt.io>
24 lines
557 B
CMake
24 lines
557 B
CMake
# Copyright (C) 2022 The Qt Company Ltd.
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
qt_internal_add_test(tst_qdbusabstractinterface
|
|
SOURCES
|
|
interface.cpp
|
|
tst_qdbusabstractinterface.cpp
|
|
LIBRARIES
|
|
Qt::Core
|
|
Qt::DBus
|
|
)
|
|
|
|
qt_internal_extend_target(tst_qdbusabstractinterface
|
|
DBUS_INTERFACE_SOURCES
|
|
org.qtproject.QtDBus.Pinger.xml
|
|
DBUS_INTERFACE_BASENAME
|
|
pinger_interface
|
|
DBUS_INTERFACE_FLAGS
|
|
-i interface.h
|
|
)
|
|
|
|
add_subdirectory(qpinger)
|
|
add_dependencies(tst_qdbusabstractinterface qpinger)
|