diff options
Diffstat (limited to 'examples/network/network-chat/network-chat.pro')
-rw-r--r-- | examples/network/network-chat/network-chat.pro | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/examples/network/network-chat/network-chat.pro b/examples/network/network-chat/network-chat.pro new file mode 100644 index 0000000..6967228 --- /dev/null +++ b/examples/network/network-chat/network-chat.pro @@ -0,0 +1,21 @@ +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 + +# install +target.path = $$[QT_INSTALL_EXAMPLES]/network/network-chat +sources.files = $$SOURCES $$HEADERS $$RESOURCES $$FORMS network-chat.pro *.chat +sources.path = $$[QT_INSTALL_EXAMPLES]/network/network-chat +INSTALLS += target sources + +include($$QT_SOURCE_TREE/examples/examplebase.pri) |