mirror of
https://github.com/QuasarApp/qthttpserver.git
synced 2025-05-14 02:19:38 +00:00
Small, Qt integrated framework for creating specialized http server. Goals of the project: - Create a framework allowing creation of a specialized web server running in non public networks (home and company networks, stealth or hidden services) - Create an easy tool for developers to embed http servers in their apps. - Playground to narrow down problems in Qt, related to network stack, but also to explore general usability. - Potentially reduce code duplication in Qt. Not goals: - Standalone server, in particular not Apache or nginx replacement Change-Id: I0d8b83e50992b9a95c88f4735539329279cf5425 Reviewed-by: Edward Welbourne <edward.welbourne@qt.io>
9 lines
224 B
Prolog
9 lines
224 B
Prolog
CONFIG += testcase
|
|
TARGET = tst_qabstracthttpserver
|
|
SOURCES += tst_qabstracthttpserver.cpp
|
|
|
|
requires(qtConfig(private_tests))
|
|
QT = core network network-private testlib httpserver
|
|
|
|
qtHaveModule(websockets): QT += websockets
|