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
70 lines (61 loc) · 1.68 KB
/
httpserver.pro
File metadata and controls
70 lines (61 loc) · 1.68 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
TEMPLATE = app
CONFIG += console c++11
CONFIG -= app_bundle
CONFIG -= qt
lessThan(QT_MAJOR_VERSION, 5) {
QMAKE_CXXFLAGS += -std=c++1y
}
unix {
DEFINES += POSIX
}
CONFIG(debug, debug|release):DEFINES += DEBUG
#CONFIG(release, debug|release)
#{
# QMAKE_CFLAGS_RELEASE -= -O
# QMAKE_CFLAGS_RELEASE -= -O1
# QMAKE_CFLAGS_RELEASE -= -O2
# QMAKE_CFLAGS_RELEASE *= -O3
#}
LIBS += -ldl -pthread
SOURCES += \
../../src/ConfigParser.cpp \
../../src/DataVariantFormUrlencoded.cpp \
../../src/DataVariantMultipartFormData.cpp \
../../src/DataVariantTextPlain.cpp \
../../src/Event.cpp \
../../src/FileIncoming.cpp \
../../src/Main.cpp \
../../src/Module.cpp \
../../src/RequestParameters.cpp \
../../src/Server.cpp \
../../src/ServerApplicationsTree.cpp \
../../src/Socket.cpp \
../../src/SocketList.cpp \
../../src/System.cpp \
../../src/Utils.cpp \
../../src/SignalHandlers.cpp
include(deployment.pri)
qtcAddDeployment()
HEADERS += \
../../src/ConfigParser.h \
../../src/DataVariantAbstract.h \
../../src/DataVariantFormUrlencoded.h \
../../src/DataVariantMultipartFormData.h \
../../src/DataVariantTextPlain.h \
../../src/Event.h \
../../src/FileIncoming.h \
../../src/Main.h \
../../src/Module.h \
../../src/RawData.h \
../../src/RequestParameters.h \
../../src/Server.h \
../../src/ServerApplicationDefaultSettings.h \
../../src/ServerApplicationSettings.h \
../../src/ServerApplicationsTree.h \
../../src/ServerRequest.h \
../../src/ServerResponse.h \
../../src/Socket.h \
../../src/SocketList.h \
../../src/System.h \
../../src/Utils.h \
../../src/SignalHandlers.h