Explain that example runs in a simulator (#4)
* Add README to 'demo' example * Explain that demo runs in simulator
This commit is contained in:
parent
6d7d00759b
commit
0129442513
2 changed files with 15 additions and 0 deletions
|
@ -37,3 +37,6 @@ We recommend the `lv_conf.h` file to be in your project's root directory. If so,
|
|||
$ DEP_LV_CONFIG_PATH=`pwd` cargo build
|
||||
```
|
||||
|
||||
## Running the demo
|
||||
|
||||
[This project contains an example that can run in a desktop simulator.](./examples/demo)
|
||||
|
|
12
examples/demo/README.md
Normal file
12
examples/demo/README.md
Normal file
|
@ -0,0 +1,12 @@
|
|||
From base of the repository, install LVGL git submodule.
|
||||
|
||||
```
|
||||
git submodule update --init
|
||||
```
|
||||
|
||||
Run this demo:
|
||||
|
||||
```
|
||||
cd examples/demo/
|
||||
DEP_LV_CONFIG_PATH=./include cargo run
|
||||
```
|
Loading…
Reference in a new issue