This repository was archived by the owner on Sep 20, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathhttpserver.pro
More file actions
84 lines (70 loc) · 2.62 KB
/
httpserver.pro
File metadata and controls
84 lines (70 loc) · 2.62 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
71
72
73
74
75
76
77
78
79
80
81
82
83
#-------------------------------------------------
#
# Project created by QtCreator 2012-09-19T13:18:13
#
#-------------------------------------------------
QT = network xmlpatterns
CONFIG += plugin
TARGET = httpserver
include(global.pri)
TEMPLATE = lib
DEFINES += HTTPSERVER_LIBRARY
SOURCES += \
httpserver/httpservermodule.cpp \
httpserver/httpserver.cpp \
httpserver/httpserver/staticfilecontroller.cpp \
httpserver/httpserver/httpsessionstore.cpp \
httpserver/httpserver/httpsession.cpp \
httpserver/httpserver/httpresponse.cpp \
httpserver/httpserver/httprequesthandler.cpp \
httpserver/httpserver/httprequest.cpp \
httpserver/httpserver/httplistener.cpp \
httpserver/httpserver/httpcookie.cpp \
httpserver/httpserver/httpconnectionhandlerpool.cpp \
httpserver/httpserver/httpconnectionhandler.cpp \
httpserver/service/qtunixsocket.cpp \
httpserver/service/qtservice.cpp \
httpserver/templateengine/templateloader.cpp \
httpserver/templateengine/templatecache.cpp \
httpserver/templateengine/template.cpp \
httpserver/httpserver/requestmapper.cpp \
httpserver/httpserver/serverstarter.cpp \
httpserver/service/serverthread.cpp \
httpserver/service/qtunixserversocket.cpp \
httpserver/requesthandlerfactory.cpp
HEADERS += \
httpserver/httpservermodule.h \
httpserver/httpserver.h \
httpserver/httpserver/staticfilecontroller.h \
httpserver/httpserver/httpsessionstore.h \
httpserver/httpserver/httpsession.h \
httpserver/httpserver/httpresponse.h \
httpserver/httpserver/httprequesthandler.h \
httpserver/httpserver/httprequest.h \
httpserver/httpserver/httplistener.h \
httpserver/httpserver/httpcookie.h \
httpserver/httpserver/httpconnectionhandlerpool.h \
httpserver/httpserver/httpconnectionhandler.h \
httpserver/service/qtunixsocket.h \
httpserver/service/qtunixserversocket.h \
httpserver/service/qtservice_p.h \
httpserver/service/qtservice.h \
httpserver/templateengine/templateloader.h \
httpserver/templateengine/templatecache.h \
httpserver/templateengine/template.h \
httpserver/httpserver/requestmapper.h \
httpserver/httpserver/serverstarter.h \
httpserver/service/serverthread.h \
httpserver/requesthandlerfactory.h
OTHER_FILES += \
httpserver/httpserver.json
INCLUDEPATH += $$PWD/extensions/httpserver
LIBS += -L$$PWD/../libraries/$$PLATFORM$$CONF/ -lilwiscore
win32{
DLLDESTDIR = $$PWD/../output/$$PLATFORM$$CONF/bin
}
DESTDIR = $$PWD/../libraries/$$PLATFORM$$CONF
linux{
target.path = $$PWD/../output/$$PLATFORM$$CONF/bin/
INSTALLS += target
}