mirror of
https://github.com/wolfpld/tracy.git
synced 2024-11-12 19:31:47 +00:00
Setup VS Code build tasks.
This commit is contained in:
parent
2dd61aba49
commit
3b33a49bd8
66
.vscode/tasks.json
vendored
66
.vscode/tasks.json
vendored
@ -4,17 +4,73 @@
|
|||||||
"version": "2.0.0",
|
"version": "2.0.0",
|
||||||
"tasks": [
|
"tasks": [
|
||||||
{
|
{
|
||||||
"label": "Build Profiler",
|
"label": "Build Profiler GUI",
|
||||||
"type": "shell",
|
"type": "shell",
|
||||||
"command": "make debug -C profiler/build/unix -j 24",
|
"command": "make debug -C profiler/build/unix -j `nproc`",
|
||||||
"problemMatcher": {
|
"group": {
|
||||||
"base": "$gcc",
|
"kind": "build",
|
||||||
"fileLocation": ["relative", "${workspaceRoot}/profiler/build/unix"]
|
"isDefault": true
|
||||||
},
|
},
|
||||||
|
"presentation": {
|
||||||
|
"close": true
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"label": "Build capture tool",
|
||||||
|
"type": "shell",
|
||||||
|
"command": "make debug -C capture/build/unix -j `nproc`",
|
||||||
|
"group": {
|
||||||
|
"kind": "build",
|
||||||
|
"isDefault": true
|
||||||
|
},
|
||||||
|
"presentation": {
|
||||||
|
"close": true
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"label": "Build csvexport tool",
|
||||||
|
"type": "shell",
|
||||||
|
"command": "make debug -C csvexport/build/unix -j `nproc`",
|
||||||
|
"group": {
|
||||||
|
"kind": "build",
|
||||||
|
"isDefault": true
|
||||||
|
},
|
||||||
|
"presentation": {
|
||||||
|
"close": true
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"label": "Build import-chrome tool",
|
||||||
|
"type": "shell",
|
||||||
|
"command": "make debug -C import-chrome/build/unix -j `nproc`",
|
||||||
"group": {
|
"group": {
|
||||||
"kind": "build",
|
"kind": "build",
|
||||||
"isDefault": true
|
"isDefault": true
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"label": "Build update tool",
|
||||||
|
"type": "shell",
|
||||||
|
"command": "make debug -C update/build/unix -j `nproc`",
|
||||||
|
"group": {
|
||||||
|
"kind": "build",
|
||||||
|
"isDefault": true
|
||||||
|
},
|
||||||
|
"presentation": {
|
||||||
|
"close": true
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"label": "Build client library",
|
||||||
|
"type": "shell",
|
||||||
|
"command": "make debug -C library/unix -j `nproc`",
|
||||||
|
"group": {
|
||||||
|
"kind": "build",
|
||||||
|
"isDefault": true
|
||||||
|
},
|
||||||
|
"presentation": {
|
||||||
|
"close": true
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user