forked from drobin/qfcgi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathqfcgi.pro
41 lines (37 loc) · 922 Bytes
/
qfcgi.pro
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
QT += core network
CONFIG += c++17 silent
CONFIG -= app_bundle
TEMPLATE = lib
TARGET = qfcgi
DEFINES += QT_NO_DEBUG_OUTPUT
unix
{
target.path = /usr/lib/
header.path = /usr/include/
header.files = src/qfcgi.h
headers.path = /usr/include/qfcgi
headers.files = src/qfcgi/fcgi.h src/qfcgi/request.h
INSTALLS += target header headers
}
HEADERS += \
src/qfcgi/builder.h \
src/qfcgi/connection.h \
src/qfcgi/fcgi.h \
src/qfcgi/fdbuilder.h \
src/qfcgi/localbuilder.h \
src/qfcgi/record.h \
src/qfcgi/request.h \
src/qfcgi/stream.h \
src/qfcgi/tcpbuilder.h \
src/qfcgi.h \
src/qfcgi/file.h
SOURCES += \
src/qfcgi/connection.cpp \
src/qfcgi/fcgi.cpp \
src/qfcgi/fdbuilder.cpp \
src/qfcgi/localbuilder.cpp \
src/qfcgi/record.cpp \
src/qfcgi/request.cpp \
src/qfcgi/stream.cpp \
src/qfcgi/tcpbuilder.cpp \
src/qfcgi/file.cpp