Files
super_pang_clone/.vscode/tasks.json
2022-10-20 13:45:49 +02:00

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"
}