summaryrefslogtreecommitdiffstats
path: root/examples/network/network-chat/network-chat.pro
diff options
context:
space:
mode:
Diffstat (limited to 'examples/network/network-chat/network-chat.pro')
-rw-r--r--examples/network/network-chat/network-chat.pro26
1 files changed, 26 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 0000000000..11f2d2ef30
--- /dev/null
+++ b/examples/network/network-chat/network-chat.pro
@@ -0,0 +1,26 @@
+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]/qtbase/network/network-chat
+sources.files = $$SOURCES $$HEADERS $$RESOURCES $$FORMS network-chat.pro *.chat
+sources.path = $$[QT_INSTALL_EXAMPLES]/qtbase/network/network-chat
+INSTALLS += target sources
+
+symbian {
+ include($$QT_SOURCE_TREE/examples/symbianpkgrules.pri)
+ LIBS += -lcharconv
+ TARGET.CAPABILITY = "NetworkServices ReadUserData WriteUserData"
+ TARGET.EPOCHEAPSIZE = 0x20000 0x2000000
+}