mirror of
https://gitlab.com/MisterBiggs/vscode-chocolatey-cpp.git
synced 2025-06-15 22:56:39 +00:00
20 lines
464 B
JSON
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"
|
|
}
|