62 lines
1.5 KiB
JSON
62 lines
1.5 KiB
JSON
{
|
|
"version": "2.0.0",
|
|
"tasks": [
|
|
{
|
|
"label": "Build zero-ord module",
|
|
"type": "shell",
|
|
"command": "cobc",
|
|
"args": [
|
|
"-free",
|
|
"-m",
|
|
"-g",
|
|
"-debug",
|
|
"-Wall",
|
|
"-O0",
|
|
"zero-ord.cbl"
|
|
],
|
|
"group": "build",
|
|
"presentation": {
|
|
"reveal": "always",
|
|
"panel": "new"
|
|
},
|
|
"problemMatcher": []
|
|
},
|
|
{
|
|
"label": "Build id3cobol",
|
|
"type": "shell",
|
|
"command": "cobc",
|
|
"args": [
|
|
"-free",
|
|
"-x",
|
|
"-g",
|
|
"-debug",
|
|
"-Wall",
|
|
"-O0",
|
|
"id3cobol.cbl"
|
|
],
|
|
"group": "build",
|
|
"presentation": {
|
|
"reveal": "always",
|
|
"panel": "new"
|
|
},
|
|
"problemMatcher": []
|
|
},
|
|
{
|
|
"label": "Build All",
|
|
"dependsOrder": "sequence",
|
|
"dependsOn": [
|
|
"Build zero-ord module",
|
|
"Build id3cobol"
|
|
],
|
|
"group": {
|
|
"kind": "build",
|
|
"isDefault": true
|
|
},
|
|
"presentation": {
|
|
"reveal": "always",
|
|
"panel": "new"
|
|
},
|
|
"problemMatcher": []
|
|
}
|
|
]
|
|
} |