-
Notifications
You must be signed in to change notification settings - Fork 0
/
chatterbox.pro
76 lines (67 loc) · 1.79 KB
/
chatterbox.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
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
#
# This is your project .pro file
#
# This file was automatically generated by running:
#
# qmake -project
#
# You only need to run that command once, and afterwards you can
# modify this file from then by hand.
#
# The "app" template means we want to build an application rather
# than a library or other kind of project
TEMPLATE = app
# Some variables that help the compiler do its thing:
DEPENDPATH += .
INCLUDEPATH += .
# This gives us access to the Qt socket classes (QTcpSocket)
# QT += network widgets multimedia
QT += network widgets
# This bundles any images we want right into our executable, so
# we do not have to ship any image files with our installer or RPM
# or deb package or whatever:
RESOURCES += images.qrc
# This is our list of files in the project. You can add files
# to these lists as you add new windows, custom widgets, or new
# functionality:
FORMS += MainWindow.ui \
dialog.ui \
registration.ui \
settingsdialog.ui \
chatwidget.ui \
dialogadduser.ui \
newuserauthdialog.ui \
newdataauthdialog.ui \
dialogdeletefriendship.ui \
newtab.ui
HEADERS += MainWindow.h \
dialog.h \
registration.h \
protocol.h \
settingsdialog.h \
chatwidget.h \
dialogadduser.h \
newuserauthdialog.h \
newdataauthdialog.h \
dialogdeletefriendship.h \
newtab.h \
filetransfersender.h \
filetransferreceiver.h \
request.h \
error.h
SOURCES += MainWindow.cxx \
main.cpp \
dialog.cpp \
registration.cpp \
protocol.cpp \
settingsdialog.cpp \
chatwidget.cpp \
dialogadduser.cpp \
newuserauthdialog.cpp \
newdataauthdialog.cpp \
dialogdeletefriendship.cpp \
newtab.cpp \
filetransfersender.cpp \
filetransferreceiver.cpp \
request.cpp \
error.cpp