f13b0b2cf2
Compiling the default examples should be possible without compile errors. Task-number: QTBUG-53141 Change-Id: I73d8787241291ae6230861a89b38e91d900fede0 Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@qt.io> Reviewed-by: Ulf Hermann <ulf.hermann@qt.io>
22 lines
543 B
Prolog
22 lines
543 B
Prolog
HEADERS = chatdialog.h \
|
|
client.h \
|
|
connection.h \
|
|
peermanager.h \
|
|
server.h
|
|
SOURCES = chatdialog.cpp \
|
|
client.cpp \
|
|
connection.cpp \
|
|
main.cpp \
|
|
peermanager.cpp \
|
|
server.cpp
|
|
FORMS = chatdialog.ui
|
|
QT += network widgets
|
|
requires(qtConfig(udpsocket))
|
|
requires(qtConfig(listwidget))
|
|
|
|
# install
|
|
target.path = $$[QT_INSTALL_EXAMPLES]/network/network-chat
|
|
INSTALLS += target
|
|
|
|
|