29 lines
491 B
JSON
29 lines
491 B
JSON
|
{
|
||
|
"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
|
||
|
}
|
||
|
}
|
||
|
]
|
||
|
}
|