CGI/.vscode/tasks.json

37 lines
1 KiB
JSON
Raw Normal View History

2018-10-17 05:39:52 +00:00
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "Build All Exercises",
"type": "shell",
2018-10-17 09:24:39 +00:00
"command": "rm -rf build/bin/ && mkdir -p build && cd build && cmake .. && make -j 16",
2018-10-17 05:39:52 +00:00
"problemMatcher": []
},
{
"label": "Run Exercise 1",
"type": "shell",
"command": "build/bin/./Exercise1",
"problemMatcher": []
2018-10-17 05:42:20 +00:00
},
{
"label": "Run Exercise 2",
"type": "shell",
"command": "build/bin/./Exercise2",
"problemMatcher": []
},
{
"label": "Run Exercise 3",
"type": "shell",
"command": "build/bin/./Exercise3",
"problemMatcher": []
},
{
"label": "Run Exercise 4",
"type": "shell",
"command": "build/bin/./Exercise4",
"problemMatcher": []
2018-10-17 05:39:52 +00:00
}
]
}