|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#-------------------------------------------------
#
# Project created by QtCreator 2013-12-10T14:22:05
#
#-------------------------------------------------
QT += core gui
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = QChatClient
TEMPLATE = app
SOURCES += main.cpp\
|
|
16
17
18
|
loginscreen.cpp \
chatroom.cpp \
Socket.cpp \
|
|
19
20
21
|
chatwidget.cpp \
chatwindow.cpp \
chatinputtext.cpp
|
|
22
|
|
|
23
|
HEADERS += \
|
|
24
25
26
27
|
loginscreen.h \
chatroom.h \
SocketException.h \
Socket.h \
|
|
28
29
30
|
chatwidget.h \
chatwindow.h \
chatinputtext.h
|
|
31
|
|
|
32
33
34
|
FORMS += chatwindow.ui \
loginscreen.ui \
chatroom.ui
|
|
35
|
|
|
36
|
QMAKE_CXXFLAGS += -std=c++11
|