summaryrefslogtreecommitdiffstats
path: root/src/httpserver/httpserver.pro
blob: d2139f6b564326d7b4e44b2709df7c2ed2c67173 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
TARGET = QtHttpServer
INCLUDEPATH += .

QT += network core-private

qtHaveModule(websockets): QT += websockets-private

HEADERS += \
    qthttpserverglobal.h \
    qabstracthttpserver.h \
    qabstracthttpserver_p.h \
    qhttpserverrequest.h \
    qhttpserverrequest_p.h

SOURCES += \
    qabstracthttpserver.cpp \
    qhttpserverrequest.cpp

include(../3rdparty/http-parser.pri)

load(qt_module)