-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtasks.json
More file actions
67 lines (67 loc) · 2.05 KB
/
tasks.json
File metadata and controls
67 lines (67 loc) · 2.05 KB
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"version": "2.0.0",
"tasks": [
{
"label": "Compile HAL Component",
"type": "shell",
"command": "sudo halcompile --install ${file}",
"group": {
"kind": "build",
"isDefault": true
},
"problemMatcher": [],
"detail": "Compile and install the HAL component."
},
{
"label": "Install PokeysLib",
"type": "shell",
"command": "chmod +x ./install_pokeyslib.sh && ./install_pokeyslib.sh",
"group": {
"kind": "build",
"isDefault": false
},
"problemMatcher": [],
"detail": "Install the PokeysLib library."
},
{
"label": "Compile Pokeys Component",
"type": "shell",
"command": "sudo halcompile --install pokeys.comp",
"group": {
"kind": "build",
"isDefault": false
},
"dependsOn": [
"Install PokeysLib"
],
"problemMatcher": [],
"detail": "Compile and install the Pokeys component."
},
{
"label": "Compile Pokeys Home Component",
"type": "shell",
"command": "sudo halcompile --install pokeys_homecomp.comp",
"group": {
"kind": "build",
"isDefault": false
},
"problemMatcher": [],
"detail": "Compile and install the Pokeys Home component."
},
{
"label": "Load INI Configuration",
"type": "shell",
"command": "linuxcnc -v -d $(file)",
"group": {
"kind": "none",
"isDefault": false
},
"dependsOn": [
"Compile Pokeys Component",
"Compile Pokeys Home Component"
],
"problemMatcher": [],
"detail": "Load the INI configuration for LinuxCNC."
}
]
}