summaryrefslogtreecommitdiff
path: root/examples/webchannel/standalone/standalone.pro
diff options
context:
space:
mode:
authorBernd Lamecker <bernd.lamecker@basyskom.com>2014-09-17 15:30:36 +0200
committerMilian Wolff <milian.wolff@kdab.com>2014-10-10 15:34:27 +0200
commite9ec067e628564e0b065c625dcd7e695857706ac (patch)
tree70c63561996dd16f135eeb61b174b6994291d0e5 /examples/webchannel/standalone/standalone.pro
parentfeb51b94457691edbc58a34a9ddaf8b20c316820 (diff)
downloadqtwebchannel-e9ec067e628564e0b065c625dcd7e695857706ac.tar.gz
Added some more examples
Implemented a C++ Server, providing a chatservice through a simple QObject using QWebChannel and also both a QML and HTML Client to interact with the server. The examples show how to use properties, signals and methods, separated in server and clients. Change-Id: I20c84c2104d0bb599ead1771aad499e59657f83e Reviewed-by: Milian Wolff <milian.wolff@kdab.com>
Diffstat (limited to 'examples/webchannel/standalone/standalone.pro')
-rw-r--r--examples/webchannel/standalone/standalone.pro8
1 files changed, 4 insertions, 4 deletions
diff --git a/examples/webchannel/standalone/standalone.pro b/examples/webchannel/standalone/standalone.pro
index fdeb87a..19aa264 100644
--- a/examples/webchannel/standalone/standalone.pro
+++ b/examples/webchannel/standalone/standalone.pro
@@ -4,12 +4,12 @@ CONFIG += warn_on
SOURCES += \
main.cpp \
- websockettransport.cpp \
- websocketclientwrapper.cpp
+ ../shared/websockettransport.cpp \
+ ../shared/websocketclientwrapper.cpp
HEADERS += \
- websockettransport.h \
- websocketclientwrapper.h
+ ../shared/websockettransport.h \
+ ../shared/websocketclientwrapper.h
FORMS += \
dialog.ui