360toPerspective/.vscode/tasks.json

21 lines
No EOL
505 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"label": "build",
"type": "shell",
"command": "D:/Programmes/Octave/Octave-7.3.0/usr/bin/make.exe",
"args": [
"-f",
"${workspaceFolder}/cpp/Makefile"
],
"options": {
"cwd": "${workspaceFolder}/cpp"
},
"group": {
"kind": "build",
"isDefault": true
}
}
]
}