-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtasks.json
40 lines (40 loc) · 1.01 KB
/
tasks.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
// ROS extension is broken; Below tasks created for developer convenience.
{
"label": "rosdep install dependencies",
"type": "shell",
"command": "rosdep install --ignore-src --from-path . -y",
"problemMatcher": []
},
{
"label": "colcon build all",
"type": "shell",
"command": "colcon build --symlink-install",
"problemMatcher": []
},
{
"label": "colcon build specific",
"type": "shell",
"command": "colcon build --symlink-install --packages-select ${input:package}",
"problemMatcher": []
},
{
"label": "update package index",
"type": "shell",
"command": "apt-get update && rosdep update",
"problemMatcher": []
}
],
"inputs": [
{
"id": "package",
"description": "Package",
"default": "",
"type": "promptString"
}
]
}