tracy/.vscode/tasks.json

88 lines
2.6 KiB
JSON
Raw Normal View History

2020-08-15 00:10:14 +00:00
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
2022-04-24 13:47:42 +00:00
"label": "Build Profiler GUI",
2020-08-15 00:10:14 +00:00
"type": "shell",
"command": "CC=clang CXX=clang++ make debug -C profiler/build/unix -j `nproc`",
2022-04-24 13:47:42 +00:00
"group": {
"kind": "build",
"isDefault": true
},
"presentation": {
"close": true
}
},
{
"label": "Build capture tool",
"type": "shell",
"command": "CC=clang CXX=clang++ make debug -C capture/build/unix -j `nproc`",
2022-04-24 13:47:42 +00:00
"group": {
"kind": "build",
"isDefault": true
},
"presentation": {
"close": true
}
},
{
"label": "Build csvexport tool",
"type": "shell",
"command": "CC=clang CXX=clang++ make debug -C csvexport/build/unix -j `nproc`",
2022-04-24 13:47:42 +00:00
"group": {
"kind": "build",
"isDefault": true
2020-08-15 00:10:14 +00:00
},
2022-04-24 13:47:42 +00:00
"presentation": {
"close": true
}
},
{
"label": "Build import-chrome tool",
"type": "shell",
"command": "CC=clang CXX=clang++ make debug -C import-chrome/build/unix -j `nproc`",
2022-04-24 13:47:42 +00:00
"group": {
"kind": "build",
"isDefault": true
}
},
{
"label": "Build update tool",
"type": "shell",
"command": "CC=clang CXX=clang++ make debug -C update/build/unix -j `nproc`",
2020-08-15 00:10:14 +00:00
"group": {
"kind": "build",
"isDefault": true
2022-04-24 13:47:42 +00:00
},
"presentation": {
"close": true
}
},
{
"label": "Build client library",
"type": "shell",
"command": "CC=clang CXX=clang++ make debug -C library/unix -j `nproc`",
2022-04-24 13:47:42 +00:00
"group": {
"kind": "build",
"isDefault": true
},
"presentation": {
"close": true
2020-08-15 00:10:14 +00:00
}
},
{
"label": "Build test application",
"type": "shell",
"command": "CC=clang CXX=clang++ make OPTFLAGS=-DTRACY_VERBOSE\\ -fno-omit-frame-pointer\\ -march=native\\ -g -C test -j `nproc`",
"group": {
"kind": "build",
"isDefault": true
},
"presentation": {
"close": true
}
2020-08-15 00:10:14 +00:00
}
]
}