33 lines
877 B
JSON
33 lines
877 B
JSON
{
|
|
"tasks": [
|
|
{
|
|
"type": "cppbuild",
|
|
"label": "C/C++: g++.exe build active file",
|
|
"command": "g++.exe",
|
|
"args": [
|
|
"${workspaceFolder}\\*.cpp",
|
|
"-g",
|
|
"-std=c++11",
|
|
"-lmingw32",
|
|
"-lSDL2main",
|
|
"-lSDL2_image",
|
|
"-lSDL2_mixer",
|
|
"-lSDL2",
|
|
"-o",
|
|
"${workspaceFolder}\\bin\\${workspaceFolderBasename}_debug.exe"
|
|
],
|
|
"options": {
|
|
"cwd": "${workspaceFolder}"
|
|
},
|
|
"problemMatcher": [
|
|
"$gcc"
|
|
],
|
|
"group": {
|
|
"kind": "build",
|
|
"isDefault": true
|
|
},
|
|
"detail": "compiler: g++.exe"
|
|
}
|
|
],
|
|
"version": "2.0.0"
|
|
} |