summaryrefslogtreecommitdiffstats
path: root/examples/btchat/btchat.pro
blob: f215cb87df9dade43a9f28e1cd83b22bf132e4a8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
TEMPLATE = app
TARGET = btchat

QT += concurrent bluetooth widgets

SOURCES = \
    main.cpp \
    chat.cpp \
    remoteselector.cpp \
    chatserver.cpp \
    chatclient.cpp

HEADERS = \
    chat.h \
    remoteselector.h \
    chatserver.h \
    chatclient.h

FORMS = \
    chat.ui \
    remoteselector.ui