* refactor modules * moved esp_lvgl_port to libs/ * added missing file * fix for sim build * various sim/pc fixes * lvgl improvements * added missing cmake files
9 lines
129 B
Bash
Executable File
9 lines
129 B
Bash
Executable File
#!/bin/sh
|
|
if [[ -v ESP_IDF_VERSION ]]; then
|
|
idf.py build
|
|
else
|
|
cmake -S ./ -B build-sim
|
|
cmake --build build-sim -j 12
|
|
fi
|
|
|