2023-10-30 06:33:08 +08:00
|
|
|
# Copyright (C) 2022 The Qt Company Ltd.
|
|
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
|
|
|
|
if(NOT TARGET Qt6::Network)
|
|
|
|
return()
|
|
|
|
endif()
|
2023-11-02 01:02:52 +08:00
|
|
|
if(NOT INTEGRITY AND NOT ANDROID)
|
2023-10-30 06:33:08 +08:00
|
|
|
qt_internal_add_example(dnslookup)
|
|
|
|
endif()
|
|
|
|
if(TARGET Qt6::Widgets)
|
|
|
|
qt_internal_add_example(blockingfortuneclient)
|
|
|
|
qt_internal_add_example(broadcastreceiver)
|
|
|
|
qt_internal_add_example(broadcastsender)
|
|
|
|
qt_internal_add_example(http)
|
|
|
|
qt_internal_add_example(threadedfortuneserver)
|
|
|
|
qt_internal_add_example(torrent)
|
|
|
|
qt_internal_add_example(multicastreceiver)
|
|
|
|
qt_internal_add_example(multicastsender)
|
|
|
|
qt_internal_add_example(fortuneclient)
|
|
|
|
qt_internal_add_example(fortuneserver)
|
2023-11-02 01:02:52 +08:00
|
|
|
qt_internal_add_example(rsslisting)
|
2023-10-30 06:33:08 +08:00
|
|
|
endif()
|
|
|
|
if(QT_FEATURE_processenvironment AND TARGET Qt6::Widgets)
|
|
|
|
qt_internal_add_example(network-chat)
|
|
|
|
endif()
|
|
|
|
if(QT_FEATURE_ssl AND TARGET Qt6::Widgets)
|
|
|
|
qt_internal_add_example(securesocketclient)
|
|
|
|
endif()
|
|
|
|
if(QT_FEATURE_dtls AND TARGET Qt6::Widgets)
|
|
|
|
qt_internal_add_example(secureudpserver)
|
|
|
|
qt_internal_add_example(secureudpclient)
|
|
|
|
endif()
|
|
|
|
if(QT_FEATURE_sctp AND TARGET Qt6::Widgets)
|
|
|
|
qt_internal_add_example(multistreamserver)
|
|
|
|
qt_internal_add_example(multistreamclient)
|
|
|
|
endif()
|