summaryrefslogtreecommitdiffstats
path: root/examples/bluetooth/btchat/btchat.pro
blob: 6ecae4c77a726e71a550452816942a7921e9c91a (plain)
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
TEMPLATE = app
TARGET = btchat

QT = core bluetooth widgets
android: QT += androidextras

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

target.path = $$[QT_INSTALL_EXAMPLES]/bluetooth/btchat
INSTALLS += target