forked from Mendeley/mendeley-legacy-desktop-qhttpserver
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsrc.pro
More file actions
26 lines (17 loc) · 603 Bytes
/
Copy pathsrc.pro
File metadata and controls
26 lines (17 loc) · 603 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
QHTTPSERVER_BASE = ..
TEMPLATE = lib
TARGET = qhttpserver
VERSION = 0.1.0
QT += network
QT -= gui
CONFIG += dll 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 HttpStatusCodes
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 = $$QHTTPSERVER_BASE/lib
INSTALLS += target