1
0
mirror of https://gitlab.com/MisterBiggs/vscode-chocolatey-cpp.git synced 2025-06-16 07:06:41 +00:00
2019-10-15 02:18:36 +00:00

20 lines
464 B
JSON

{
"tasks": [
{
"type": "shell",
"label": "g++.exe build active file",
"command": "C:\\ProgramData\\chocolatey\\lib\\mingw\\tools\\install\\mingw64\\bin\\g++.exe",
"args": [
"-g",
"${file}",
"-o",
"${fileDirname}\\${fileBasenameNoExtension}.exe"
],
"options": {
"cwd": "C:\\ProgramData\\chocolatey\\lib\\mingw\\tools\\install\\mingw64\\bin"
}
}
],
"version": "2.0.0"
}