Long-Starlight-Snake-Game/.vscode/tasks.json

29 lines
491 B
JSON
Raw Normal View History

{
"version": "2.0.0",
"tasks": [
{
"type": "shell",
"label": "Build And Run Game",
"command": "C:\\MinGW\\bin\\g++.exe",
"args": [
"-g",
"${workspaceFolder}\\main.cpp",
"-o",
"${workspaceFolder}\\main.exe",
"${workspaceFolder}\\SFML\\*.a",
"&&",
"${workspaceFolder}\\main.exe"
],
"options": {
"cwd": "${workspaceFolder}"
},
"problemMatcher": [
"$gcc"
],
"group": {
"kind": "build",
"isDefault": true
}
}
]
}