-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathnntpProxyQT.pro
More file actions
49 lines (43 loc) · 854 Bytes
/
Copy pathnntpProxyQT.pro
File metadata and controls
49 lines (43 loc) · 854 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
42
43
44
45
46
47
48
QT += core network sql
QT -= gui
TARGET = nntpProxyQT
CONFIG += console
CONFIG -= app_bundle
CONFIG += c++11
QMAKE_CXXFLAGS += -Wno-write-strings
TEMPLATE = app
SOURCES += main.cpp \
nntpproxy.cpp \
inputconnection.cpp \
connection.cpp \
log.cpp \
nntp.cpp \
user.cpp \
usermanager.cpp \
nntpserver.cpp \
nntpconnection.cpp \
mythread.cpp \
sessionhandler.cpp \
sessionmanager.cpp \
nntpservermanager.cpp \
database.cpp \
mycrypt.cpp
HEADERS += \
nntpproxy.h \
inputconnection.h \
connection.h \
log.h \
nntp.h \
constants.h \
user.h \
usermanager.h \
nntpserver.h \
nntpconnection.h \
mythread.h \
constants_tests.h \
sessionhandler.h \
sessionmanager.h \
nntpservermanager.h \
mymanager.h \
database.h \
mycrypt.h