Files
Examples/C++/vending-machine/.vscode/tasks.json
plane000 9ed69a60eb OpenTK
2018-09-02 17:47:00 +01:00

19 lines
373 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"label": "build",
"type": "shell",
"command": "g++",
"args": [
"-g", "main.cpp",
"-o", "./build/app.exe"
],
"group": {
"kind": "build",
"isDefault": true
}
}
]
}