summaryrefslogtreecommitdiffstats
path: root/examples/bluetooth/bttennis/bttennis.pro
blob: 1c014784b24d9907c89a02e885ec6da42e673cfc (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
26
27
28
29
30
31
32
33
34
35
36
TEMPLATE = app
TARGET = bttennis

QT = core bluetooth widgets
#QT += nfc

SOURCES = \
    main.cpp \
    board.cpp \
    tennis.cpp \
    controller.cpp \
    tennisserver.cpp \
    tennisclient.cpp \
    tennisview.cpp
#    handover.cpp

HEADERS = \
    board.h \
    tennis.h \
    controller.h \
    tennisserver.h \
    tennisclient.h \
    tennisview.h
#    handover.h

FORMS = \
    tennis.ui

RESOURCES += \
    tennis.qrc

OTHER_FILES = \
    connect.png

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