From 2a4f9cac47af1b5c4197b9eaeeba7c081df05aa3 Mon Sep 17 00:00:00 2001 From: Sebastien Douheret Date: Sat, 16 Jun 2018 23:53:12 +0200 Subject: Updated VSCode tasks definition Change-Id: I28dc150bd13a3bde8a0a3d777cdef87116a2e3c9 Signed-off-by: Sebastien Douheret --- docs/part-1/4-4_build-first-app-ide.md | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/docs/part-1/4-4_build-first-app-ide.md b/docs/part-1/4-4_build-first-app-ide.md index d14fe91..a3fa5a8 100644 --- a/docs/part-1/4-4_build-first-app-ide.md +++ b/docs/part-1/4-4_build-first-app-ide.md @@ -116,12 +116,14 @@ AGL helloworld application based on cmake template. }, "tasks": [ { - "taskName": "clean", + "label": "clean", + "type": "shell", "command": "/bin/rm -rf ${workspaceFolder}/build/* && mkdir -p build && echo Cleanup done.", "problemMatcher": [] }, { - "taskName": "pre-build", + "label": "pre-build", + "type": "shell", "group": "build", "command": "/opt/AGL/bin/xds-cli exec --rpath build --config xds-project.conf -- cmake -DRSYNC_TARGET=root@renesas-gen3 -DRSYNC_PREFIX=/opt ../", "problemMatcher": [ @@ -129,7 +131,8 @@ AGL helloworld application based on cmake template. ] }, { - "taskName": "build", + "label": "build", + "type": "shell", "group": "build", "command": "/opt/AGL/bin/xds-cli exec --rpath build --config xds-project.conf -- make widget", "problemMatcher": [ @@ -137,7 +140,8 @@ AGL helloworld application based on cmake template. ] }, { - "taskName": "populate", + "label": "populate", + "type": "shell", "command": "/opt/AGL/bin/xds-cli exec --rpath build --config xds-project.conf -- make widget-target-install", "problemMatcher": [] } -- cgit 1.2.3-korg