summaryrefslogtreecommitdiff
path: root/lib/lvgl/.devcontainer/devcontainer.json
diff options
context:
space:
mode:
authorjacqueline <me@jacqueline.id.au>2024-06-12 17:54:40 +1000
committerjacqueline <me@jacqueline.id.au>2024-06-12 17:54:40 +1000
commit64bd9053a25297f7a442ca831c7da5b44bd33f84 (patch)
treea90c6cad25a12028302ab1a5334510fba0229bae /lib/lvgl/.devcontainer/devcontainer.json
parent611176ed667c4ed7ee9f609e958f9404f4aee91d (diff)
downloadtangara-fw-64bd9053a25297f7a442ca831c7da5b44bd33f84.tar.gz
Update LVGL to v9.1.0
Diffstat (limited to 'lib/lvgl/.devcontainer/devcontainer.json')
-rw-r--r--lib/lvgl/.devcontainer/devcontainer.json28
1 files changed, 28 insertions, 0 deletions
diff --git a/lib/lvgl/.devcontainer/devcontainer.json b/lib/lvgl/.devcontainer/devcontainer.json
new file mode 100644
index 00000000..bf4fd5c3
--- /dev/null
+++ b/lib/lvgl/.devcontainer/devcontainer.json
@@ -0,0 +1,28 @@
+{
+ "image": "mcr.microsoft.com/devcontainers/universal:2",
+ "features": {
+ "ghcr.io/ebaskoro/devcontainer-features/emscripten:1": {}
+ },
+ "postCreateCommand": "chmod +x /workspace/lvgl_app/lvgl/.devcontainer/setup.sh; /workspace/lvgl_app/lvgl/.devcontainer/setup.sh",
+ "postStartCommand": ". /usr/local/emsdk/emsdk_env.sh;",
+
+ // Configure tool-specific properties.
+ "customizations": {
+ // Configure properties specific to VS Code.
+ "vscode": {
+ // Add the IDs of extensions you want installed when the container is created.
+ "extensions": [
+ //"searking.preview-vscode"
+ "analytic-signal.preview-html"
+ ]
+ }
+ },
+
+ "hostRequirements": {
+ "cpus": 4
+ },
+
+ "workspaceMount": "source=${localWorkspaceFolder},target=/workspace/lvgl_app/lvgl,type=bind",
+ "workspaceFolder": "/workspace/lvgl_app"
+
+}