mirror of https://github.com/rusefi/rusefi-1.git
59 lines
1.6 KiB
JSON
59 lines
1.6 KiB
JSON
|
{
|
||
|
// See https://go.microsoft.com/fwlink/?LinkId=733558
|
||
|
// for the documentation about the tasks.json format
|
||
|
"version": "2.0.0",
|
||
|
"tasks": [
|
||
|
{
|
||
|
"label": "Build Firmware (Frankenso/default)",
|
||
|
"type": "shell",
|
||
|
"command": "make -j12",
|
||
|
"options": {
|
||
|
"cwd": "${workspaceRoot}/firmware"
|
||
|
},
|
||
|
"problemMatcher": [],
|
||
|
"group": {
|
||
|
"kind": "build",
|
||
|
"isDefault": true
|
||
|
}
|
||
|
},
|
||
|
{
|
||
|
"label": "Build Firmware (Proteus F4)",
|
||
|
"type": "shell",
|
||
|
"command": "make -j12 PROJECT_BOARD=proteus",
|
||
|
"options": {
|
||
|
"cwd": "${workspaceRoot}/firmware"
|
||
|
},
|
||
|
"problemMatcher": [],
|
||
|
"group": {
|
||
|
"kind": "build",
|
||
|
"isDefault": true
|
||
|
}
|
||
|
},
|
||
|
{
|
||
|
"label": "Build Firmware (microRusEfi F4)",
|
||
|
"type": "shell",
|
||
|
"command": "make -j12 PROJECT_BOARD=microrusefi",
|
||
|
"options": {
|
||
|
"cwd": "${workspaceRoot}/firmware"
|
||
|
},
|
||
|
"problemMatcher": [],
|
||
|
"group": {
|
||
|
"kind": "build",
|
||
|
"isDefault": true
|
||
|
}
|
||
|
},
|
||
|
{
|
||
|
"label": "Build Unit Tests",
|
||
|
"type": "shell",
|
||
|
"command": "make -j12",
|
||
|
"options": {
|
||
|
"cwd": "${workspaceRoot}/unit_tests"
|
||
|
},
|
||
|
"problemMatcher": [],
|
||
|
"group": {
|
||
|
"kind": "build",
|
||
|
"isDefault": true
|
||
|
}
|
||
|
}
|
||
|
]
|
||
|
}
|