mirror of
https://github.com/crystalidea/qt6windows7.git
synced 2024-11-24 04:20:46 +08:00
29 lines
669 B
CMake
29 lines
669 B
CMake
|
# Copyright (C) 2022 The Qt Company Ltd.
|
||
|
# SPDX-License-Identifier: BSD-3-Clause
|
||
|
|
||
|
#####################################################################
|
||
|
## tst_network_stresstest Binary:
|
||
|
#####################################################################
|
||
|
|
||
|
qt_internal_add_manual_test(tst_network_stresstest
|
||
|
SOURCES
|
||
|
minihttpserver.cpp minihttpserver.h
|
||
|
tst_network_stresstest.cpp
|
||
|
LIBRARIES
|
||
|
Qt::CorePrivate
|
||
|
Qt::NetworkPrivate
|
||
|
Qt::Test
|
||
|
)
|
||
|
|
||
|
# Resources:
|
||
|
set(wwwfiles_resource_files
|
||
|
"qtest"
|
||
|
)
|
||
|
|
||
|
qt_internal_add_resource(tst_network_stresstest "wwwfiles"
|
||
|
PREFIX
|
||
|
"/"
|
||
|
FILES
|
||
|
${wwwfiles_resource_files}
|
||
|
)
|