summaryrefslogtreecommitdiff
path: root/examples/echo/README.md
blob: 1975c7080ef57fd6edf16ec8fa8e43d6b08f912d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
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
```