Files
soundshot/.vscode/tasks.json
2025-08-20 15:46:17 +00:00

14 lines
359 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"label": "ESP-IDF: Build (RAM) + Sync to Host",
"type": "shell",
"command": "bash -lc 'source ${IDF_PATH:-/opt/esp/idf}/export.sh && idf.py build && rsync -a --delete \"$PWD/build/\" /host_build/'",
"group": { "kind": "build", "isDefault": true },
"problemMatcher": "$gcc"
}
]
}