Blame view

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