27 lines
435 B
Prolog
27 lines
435 B
Prolog
TEMPLATE = app
|
|
TARGET = btchat
|
|
|
|
QT = core bluetooth widgets
|
|
requires(qtConfig(listwidget))
|
|
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
|