CGI/.vscode/tasks.json

57 lines
1.6 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",
2018-12-06 05:46:35 +00:00
"problemMatcher": [],
"osx": {
"command": "open build/bin/Exercise1.app"
},
"linux": {
"command": "build/bin/./Exercise1",
}
2018-10-17 05:42:20 +00:00
},
{
"label": "Run Exercise 2",
"type": "shell",
2018-12-06 05:46:35 +00:00
"problemMatcher": [],
"osx": {
"command": "open build/bin/Exercise2.app"
},
"linux": {
"command": "build/bin/./Exercise2",
}
2018-10-17 05:42:20 +00:00
},
{
"label": "Run Exercise 3",
"type": "shell",
2018-12-06 05:46:35 +00:00
"problemMatcher": [],
"osx": {
"command": "open build/bin/Exercise3.app"
},
"linux": {
"command": "build/bin/./Exercise3",
}
2018-10-17 05:42:20 +00:00
},
{
"label": "Run Exercise 4",
"type": "shell",
2018-12-06 05:46:35 +00:00
"problemMatcher": [],
"osx": {
"command": "open build/bin/Exercise4.app"
},
"linux": {
"command": "build/bin/./Exercise4",
}
2018-10-17 05:39:52 +00:00
}
]
}