summaryrefslogtreecommitdiffstats
path: root/examples/bluetooth/btchat/btchat.pro
blob: 0d7b5f77bcf8583383d00d8494a6f35e69e6e1ae (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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
TEMPLATE = app
TARGET = btchat

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

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

theme_resources.files = \
    icons/btchat/24x24/bluetooth.png \
    icons/btchat/24x24/bluetooth_dark.png \
    icons/btchat/24x24/send.png \
    icons/btchat/24x24/send_dark.png \
    icons/btchat/24x24@2/bluetooth.png \
    icons/btchat/24x24@2/bluetooth_dark.png \
    icons/btchat/24x24@2/send.png \
    icons/btchat/24x24@2/send_dark.png \
    icons/btchat/24x24@3/bluetooth.png \
    icons/btchat/24x24@3/bluetooth_dark.png \
    icons/btchat/24x24@3/send.png \
    icons/btchat/24x24@3/send_dark.png \
    icons/btchat/24x24@4/bluetooth.png \
    icons/btchat/24x24@4/bluetooth_dark.png \
    icons/btchat/24x24@4/send.png \
    icons/btchat/24x24@4/send_dark.png \
    icons/btchat/index.theme

theme_resources.prefix = /

RESOURCES += theme_resources

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

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