rust-qt-binding-generator/examples/todos/README.md

18 lines
441 B
Markdown

![Todos application](todos.png)
Source code for https://fosdem.org/2018/schedule/event/rust_qt_binding_generator/
This is an implementation of the [TodoMVC specification](https://github.com/tastejs/todomvc/blob/master/app-spec.md).
Make sure `rust_qt_binding_generator` is in the `PATH`.
```bash
mkdir build
cd build
cmake -GNinja ..
ninja
export QT_QUICK_CONTROLS_MATERIAL_THEME=Dark
export QT_QUICK_CONTROLS_STYLE=Material
./todos
```