ELFIO/.vscode/tasks.json

37 lines
885 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}/ELFIOTest",
},
"group": {
"kind": "build",
"isDefault": true
}
},
{
"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"
}