You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
1006 B
33 lines
1006 B
{ |
|
"version": "2.0.0", |
|
"tasks": [ |
|
{ |
|
"type": "cppbuild", |
|
"label": "C/C++: g++.exe build active file", |
|
"command": "C:/ProgramData/chocolatey/lib/mingw/tools/install/mingw64/bin/g++.exe", |
|
"args": [ |
|
"-fdiagnostics-color=always", |
|
"-g", |
|
"${workspaceFolder}/*.cpp", |
|
"-o", |
|
"${workspaceFolder}/build/${fileBasenameNoExtension}.exe", |
|
"-I${vcpkgRoot}/x64-mingw-static/include", |
|
"-L${vcpkgRoot}/x64-mingw-static/lib", |
|
"-ldrogon", |
|
"-ljsoncpp", |
|
"-lrcpp" |
|
], |
|
"options": { |
|
"cwd": "${workspaceFolder}" |
|
}, |
|
"problemMatcher": [ |
|
"$gcc" |
|
], |
|
"group": { |
|
"kind": "build", |
|
"isDefault": true |
|
}, |
|
"detail": "Task generated by Debugger." |
|
} |
|
] |
|
} |