Files
g2/.vscode/tasks.json

190 lines
5.0 KiB
JSON

{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"options": {
"cwd": "${workspaceRoot}/g2core"
},
"tasks": [
{
"label": "Build CONFIG=ShapeokoDualY",
"type": "process",
"command": "make",
"args": ["CONFIG=ShapeokoDualY", "VERBOSE=2", "COLOR=0", "DEBUG=2",
"RECORD=1"],
"group": "build",
"problemMatcher": {
"base": "$gcc",
"fileLocation": ["relative", "${workspaceRoot}/g2core"]
}
},
{
"label": "Clean CONFIG=ShapeokoDualY",
"type": "process",
"command": "make",
"args": ["CONFIG=ShapeokoDualY", "clean"],
"group": "build",
"problemMatcher": {
"base": "$gcc",
"fileLocation": ["relative", "${workspaceRoot}/g2core"]
}
},
{
"label": "Build CONFIG=MiniMill Debug",
"type": "process",
"command": "make",
"args": ["CONFIG=MiniMill", "VERBOSE=2", "COLOR=0", "DEBUG=2",
"RECORD=1"],
"group": "build",
"problemMatcher": {
"base": "$gcc",
"fileLocation": ["relative", "${workspaceRoot}/g2core"]
}
},
{
"label": "Build CONFIG=MiniMill Production",
"type": "process",
"command": "make",
"args": ["CONFIG=MiniMill", "VERBOSE=2", "COLOR=0",
"RECORD=1"],
"group": "build",
"problemMatcher": {
"base": "$gcc",
"fileLocation": ["relative", "${workspaceRoot}/g2core"]
}
},
{
"label": "Clean CONFIG=MiniMill",
"type": "process",
"command": "make",
"args": ["CONFIG=MiniMill", "clean"],
"group": "build",
"problemMatcher": {
"base": "$gcc",
"fileLocation": ["relative", "${workspaceRoot}/g2core"]
}
},
{
"label": "Build CONFIG=Othermill Debug",
"type": "process",
"command": "make",
"args": ["CONFIG=Othermill", "VERBOSE=2", "COLOR=0", "DEBUG=2",
"RECORD=1"],
"group": "build",
"problemMatcher": {
"base": "$gcc",
"fileLocation": ["relative", "${workspaceRoot}/g2core"]
}
},
{
"label": "Build CONFIG=Othermill Production",
"type": "process",
"command": "make",
"args": ["CONFIG=Othermill", "VERBOSE=2", "COLOR=0",
"RECORD=1"],
"group": "build",
"problemMatcher": {
"base": "$gcc",
"fileLocation": ["relative", "${workspaceRoot}/g2core"]
}
},
{
"label": "Clean CONFIG=Othermill",
"type": "process",
"command": "make",
"args": ["CONFIG=Othermill", "clean"],
"group": "build",
"problemMatcher": {
"base": "$gcc",
"fileLocation": ["relative", "${workspaceRoot}/g2core"]
}
},
{
"label": "Build CONFIG=OthermillPro Debug",
"type": "process",
"command": "make",
"args": ["CONFIG=OthermillPro", "VERBOSE=2", "COLOR=0", "DEBUG=2",
"RECORD=1"],
"group": "build",
"problemMatcher": {
"base": "$gcc",
"fileLocation": ["relative", "${workspaceRoot}/g2core"]
}
},
{
"label": "Build CONFIG=OthermillPro Production",
"type": "process",
"command": "make",
"args": ["CONFIG=OthermillPro", "VERBOSE=2", "COLOR=0",
"RECORD=1"],
"group": "build",
"problemMatcher": {
"base": "$gcc",
"fileLocation": ["relative", "${workspaceRoot}/g2core"]
}
},
{
"label": "Clean CONFIG=OthermillPro",
"type": "process",
"command": "make",
"args": ["CONFIG=OthermillPro", "clean"],
"group": "build",
"problemMatcher": {
"base": "$gcc",
"fileLocation": ["relative", "${workspaceRoot}/g2core"]
}
},
{
"label": "Build CONFIG=r7",
"type": "process",
"command": "make",
"args": ["CONFIG=r7", "VERBOSE=2", "COLOR=0", "RECORD=1"],
"group": "build",
"problemMatcher": {
"base": "$gcc",
"fileLocation": ["relative", "${workspaceRoot}/g2core"]
}
},
{
"label": "Clean CONFIG=r7",
"type": "process",
"command": "make",
"args": ["CONFIG=r7", "clean"],
"group": "build",
"problemMatcher": {
"base": "$gcc",
"fileLocation": ["relative", "${workspaceRoot}/g2core"]
}
},
{
"label": "Build CONFIG=fourcable",
"type": "process",
"command": "make",
"args": [
"CONFIG=fourcable",
"VERBOSE=2",
"COLOR=0",
"RECORD=1",
"DEBUG=2"
],
"group": "build",
"problemMatcher": {
"base": "$gcc",
"fileLocation": ["relative", "${workspaceRoot}/g2core"]
}
},
{
"label": "Clean CONFIG=fourcable",
"type": "process",
"command": "make",
"args": ["CONFIG=fourcable", "clean"],
"group": "build",
"problemMatcher": {
"base": "$gcc",
"fileLocation": ["relative", "${workspaceRoot}/g2core"]
}
}
]
}