kaliber/.vscode/tasks.json

40 lines
755 B
JSON
Raw Permalink Normal View History

{
"version": "2.0.0",
"tasks": [
{
"label": "Build project",
"type": "shell",
"linux": {
"command": "~/code/work/chromium/src/third_party/ninja/ninja",
"problemMatcher": [
"$gcc"
]
},
"osx": {
"command": "ninja",
"problemMatcher": [
"$gcc"
]
},
"windows": {
"command": "ninja.exe",
"problemMatcher": [
"$msCompile"
]
},
"args": [
"-C",
"${workspaceFolder}/out/debug"
],
"options": {
"cwd": "${workspaceFolder}"
},
"group": {
"kind": "build",
"isDefault": true
},
"detail": "Build the project with ninja."
}
]
}