aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSebastien Douheret <sebastien.douheret@iot.bzh>2018-06-16 23:53:12 +0200
committerSebastien Douheret <sebastien.douheret@iot.bzh>2018-06-16 23:54:52 +0200
commit2a4f9cac47af1b5c4197b9eaeeba7c081df05aa3 (patch)
treef4d0c9aa56fe70f8f32a1a5b98cdbd40f816e5bb
parentf7fb2e6de70dd1aebe9aa28a2ec05de987c5f061 (diff)
Updated VSCode tasks definition
Change-Id: I28dc150bd13a3bde8a0a3d777cdef87116a2e3c9 Signed-off-by: Sebastien Douheret <sebastien.douheret@iot.bzh>
-rw-r--r--docs/part-1/4-4_build-first-app-ide.md12
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": []
}