From 7881abaca2206f117728bfb872166bf8e9f8d1df Mon Sep 17 00:00:00 2001 From: Proddy Date: Fri, 14 Jul 2023 12:12:53 +0200 Subject: [PATCH] run make from vsc --- .vscode/tasks.json | 21 ++++++++------------- 1 file changed, 8 insertions(+), 13 deletions(-) diff --git a/.vscode/tasks.json b/.vscode/tasks.json index 1e14f946b..edcb3abc1 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -4,20 +4,15 @@ "version": "2.0.0", "tasks": [ { - "label": "PlatformIO: Execute EMS-ESP (standalone)", "type": "shell", - "command": "./.pio/build/standalone/program", - "linux": { - "options": { - "env": { - // Workaround for sdl2 `-m32` crash - // https://bugs.launchpad.net/ubuntu/+source/libsdl2/+bug/1775067/comments/7 - "DBUS_FATAL_WARNINGS": "0" - } - } - }, - "dependsOn": ["PlatformIO: Build EMS-ESP (standalone)"], - "problemMatcher": [] + "label": "build standalone emsesp", + "command": "make", + "args": [], + "problemMatcher": ["$gcc"], + "group": { + "kind": "build", + "isDefault": true + } } ] }