ELFIO/.vscode/tasks.json

40 lines
949 B
JSON
Raw Normal View History

2020-02-22 09:29:45 +00:00
{
"tasks": [
{
"type": "shell",
"label": "ELFIO Test build",
2020-02-22 09:29:45 +00:00
"command": "make",
"args": [
"INCLUDES=-I..",
"CXXFLAGS='-g -O0'"
],
"options": {
"cwd": "${workspaceRoot}/tests"
2020-02-22 09:29:45 +00:00
},
"group": {
"kind": "build",
"isDefault": true
},
"problemMatcher": [
"$gcc"
]
},
{
"type": "shell",
"label": "ELF Dump Build",
"command": "make",
"args": [
"INCLUDES=-I..",
"CXXFLAGS='-g -O0'"
],
"options": {
"cwd": "${workspaceRoot}"
},
"group": {
"kind": "build",
"isDefault": true
}
2020-02-22 09:29:45 +00:00
}
],
"version": "2.0.0"
}