diff options
Diffstat (limited to 'docs')
-rw-r--r-- | docs/part-1/4-4_build-first-app-ide.md | 12 |
1 files 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": [] } |