forked from awwit/httpserver
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhttpserver.pro
More file actions
54 lines (47 loc) · 1.3 KB
/
httpserver.pro
File metadata and controls
54 lines (47 loc) · 1.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
TEMPLATE = app
CONFIG += console
CONFIG -= app_bundle
CONFIG -= qt
DEFINES += POSIX
QMAKE_CXXFLAGS += -std=c++11
LIBS += -ldl -pthread
SOURCES += \
httpserver/Main.cpp \
httpserver/DataVariantFormUrlencoded.cpp \
httpserver/DataVariantMultipartFormData.cpp \
httpserver/DataVariantTextPlain.cpp \
httpserver/Event.cpp \
httpserver/FileIncoming.cpp \
httpserver/Module.cpp \
httpserver/Server.cpp \
httpserver/ServerApplicationsTree.cpp \
httpserver/SignalsHandles.cpp \
httpserver/Socket.cpp \
httpserver/SocketList.cpp \
httpserver/System.cpp \
httpserver/Utils.cpp \
httpserver/ConfigParser.cpp
include(deployment.pri)
qtcAddDeployment()
HEADERS += \
httpserver/DataVariantAbstract.h \
httpserver/DataVariantFormUrlencoded.h \
httpserver/DataVariantMultipartFormData.h \
httpserver/DataVariantTextPlain.h \
httpserver/Event.h \
httpserver/FileIncoming.h \
httpserver/Main.h \
httpserver/Module.h \
httpserver/RawData.h \
httpserver/Server.h \
httpserver/ServerApplicationDefaultSettings.h \
httpserver/ServerApplicationSettings.h \
httpserver/ServerApplicationsTree.h \
httpserver/ServerRequest.h \
httpserver/ServerResponse.h \
httpserver/SignalsHandles.h \
httpserver/Socket.h \
httpserver/SocketList.h \
httpserver/System.h \
httpserver/Utils.h \
httpserver/ConfigParser.h