summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJuergen Bocklage-Ryannel <juergen.bocklage-ryannel@pelagicore.com>2017-01-16 16:06:02 +0100
committerJuergen Bocklage-Ryannel <juergen.bocklage-ryannel@pelagicore.com>2017-01-16 16:06:02 +0100
commit96ff5026aed0c4e839a6596058d021b31a57ad9d (patch)
tree10e520fa5fc052101d2790f517d7296a5ff93691
parent54b796e0c7170a52c754273c3ea3ddd639f9b21a (diff)
downloadqtivi-qface-96ff5026aed0c4e839a6596058d021b31a57ad9d.tar.gz
WIP - added readme for the echo example
-rw-r--r--examples/echo/README.md30
1 files changed, 30 insertions, 0 deletions
diff --git a/examples/echo/README.md b/examples/echo/README.md
new file mode 100644
index 0000000..1975c70
--- /dev/null
+++ b/examples/echo/README.md
@@ -0,0 +1,30 @@
+# Echo Example
+
+Allow you to generate the echo QML plugins from the echo interfaces and show how to use them.
+
+## Running the Generator
+```sh
+../../builtin/qtcpp/qtcpp.py ../interfaces/echo.qface ../plugins
+```
+
+## Building the Plugins
+Now you can open the plugins.pro file and build the plugins
+
+```sh
+qmake
+make
+make install
+```
+
+## Running the Echo App
+
+Now you can build the echo app and use the generated plugins
+
+```sh
+cd echo
+qmake
+make
+./echo
+```
+
+