forked from swallat/qhttpserver
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsrc.pro
More file actions
41 lines (28 loc) · 814 Bytes
/
Copy pathsrc.pro
File metadata and controls
41 lines (28 loc) · 814 Bytes
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
include(../qhttpserver.pri)
QHTTPSERVER_BASE = ..
TEMPLATE = lib
TARGET = qhttpserver
VERSION = 0.1.0
QT += network
QT -= gui
CONFIG += staticlib debug
INCLUDEPATH += $$QHTTPSERVER_BASE/http-parser
PRIVATE_HEADERS += $$QHTTPSERVER_BASE/http-parser/http_parser.h qhttpconnection.h
PUBLIC_HEADERS += qhttpserver.h qhttprequest.h qhttpresponse.h
HEADERS = $$PRIVATE_HEADERS $$PUBLIC_HEADERS
SOURCES = *.cpp $$QHTTPSERVER_BASE/http-parser/http_parser.c
OBJECTS_DIR = $$QHTTPSERVER_BASE/build
MOC_DIR = $$QHTTPSERVER_BASE/build
DESTDIR = $$QHTTPSERVER_BASE/lib
target.path = $$LIBDIR
headers.path = $$INCLUDEDIR
headers.files = $$PUBLIC_HEADERS
INSTALLS += target headers
HEADERS += \
qauthenticatorrealm.h
HEADERS += \
qsslserver.h
HEADERS += \
qhttpsconnection.h
HEADERS += \
sslserver.h