mirror of
https://github.com/hasherezade/tiny_tracer
synced 2026-06-08 14:36:37 +00:00
32 lines
808 B
JSON
32 lines
808 B
JSON
{
|
|
"version": "0.2.1",
|
|
"tasks": [
|
|
{
|
|
"taskLabel": "Build",
|
|
"appliesTo": "/",
|
|
"type": "launch",
|
|
"command": "${workspaceRoot}\\build_env.bat",
|
|
"args": [ "${env.TT_BUILD_ARCH}", "all" ],
|
|
"inheritEnvironments": [ "${cpp.activeConfiguration}" ],
|
|
"contextType": "build"
|
|
},
|
|
{
|
|
"taskLabel": "Clean",
|
|
"appliesTo": "/",
|
|
"type": "launch",
|
|
"command": "${workspaceRoot}\\build_env.bat",
|
|
"args": [ "${env.TT_BUILD_ARCH}", "clean" ],
|
|
"inheritEnvironments": [ "${cpp.activeConfiguration}" ],
|
|
"contextType": "clean"
|
|
},
|
|
{
|
|
"taskLabel": "Install x86+x64",
|
|
"appliesTo": "/",
|
|
"type": "launch",
|
|
"command": "${workspaceRoot}\\install_vs.bat",
|
|
"args": [],
|
|
"contextType": "custom"
|
|
}
|
|
]
|
|
}
|