Primer commit
This commit is contained in:
33
.vscode/tasks.json
vendored
Normal file
33
.vscode/tasks.json
vendored
Normal file
@@ -0,0 +1,33 @@
|
||||
{
|
||||
"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"
|
||||
}
|
||||
Reference in New Issue
Block a user