diff options
author | Milian Wolff <milian.wolff@kdab.com> | 2013-12-19 14:26:02 +0100 |
---|---|---|
committer | The Qt Project <gerrit-noreply@qt-project.org> | 2013-12-20 13:00:22 +0100 |
commit | 1701720dc6c2df030ee5f7db4d8aa6e2422654db (patch) | |
tree | a03ca645d0b98e6c7784de965b3dfc2720dcd35d /examples/examples.pro | |
parent | fb587a3a996d2e9d2fca34cc053df29f6d23f64e (diff) | |
download | qtwebchannel-1701720dc6c2df030ee5f7db4d8aa6e2422654db.tar.gz |
Add standalone C++/Qt example which opens HTML client in a browser.
This example shows how to use the (currently quite ugly) raw C++ API
to setup a webchannel without using QML at all. The HTML client is then
handled by the users default browser.
The example itself shows a simple chat between the HTML client and the
C++/Qt server, with a line edit for input and a text edit showing the
chat history.
Change-Id: I8baf14efb9d0c5f5880d99710cf6317fe9b887b9
Reviewed-by: Zeno Albisser <zeno.albisser@digia.com>
Diffstat (limited to 'examples/examples.pro')
-rw-r--r-- | examples/examples.pro | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/examples/examples.pro b/examples/examples.pro index decf465..554ec11 100644 --- a/examples/examples.pro +++ b/examples/examples.pro @@ -1,5 +1,7 @@ TEMPLATE = subdirs +SUBDIRS += standalone + qtHaveModule(quick) { SUBDIRS += \ hybridshell \ |