Blame view

QChatClient/QChatClient.pro 596 Bytes
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
19
        chatwindow.cpp \
    loginscreen.cpp \
    chatroom.cpp \
    Socket.cpp \
20
    chatwidget.cpp
21
22
23
24
25
26
HEADERS  += chatwindow.h \
    loginscreen.h \
    chatroom.h \
    SocketException.h \
    Socket.h \
27
    chatwidget.h
28
29
30
31
FORMS    += chatwindow.ui \
    loginscreen.ui \
    chatroom.ui
32
33

LIBS += -lpthread