summaryrefslogtreecommitdiffstats
path: root/examples/bluetooth/btscanner/btscanner.pro
blob: ee781ff7c4439811793dec8c7b40faba24afad3b (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
TARGET = btscanner

QT = core bluetooth widgets
requires(qtConfig(listwidget))
TEMPLATE = app

SOURCES = \
    main.cpp \
    device.cpp \
    service.cpp

ios: QMAKE_INFO_PLIST = Info.plist
macos: QMAKE_INFO_PLIST = ../shared/Info.qmake.macos.plist

HEADERS = \
    device.h \
    service.h

FORMS = \
    device.ui \
    service.ui

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