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",
|
2022-04-26 19:19:28 +00:00
|
|
|
"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",
|
2022-04-26 19:19:28 +00:00
|
|
|
"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",
|
2022-04-26 19:19:28 +00:00
|
|
|
"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",
|
2022-04-26 19:19:28 +00:00
|
|
|
"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",
|
2022-04-26 19:19:28 +00:00
|
|
|
"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",
|
2022-04-26 19:19:28 +00:00
|
|
|
"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
|
|
|
}
|
2022-04-30 16:24:22 +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
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|