nets-parser
Version:
NETS is an experimental project that provides a common way to configure, run and integrate parsers, locally and in the cloud. It includes concepts from Extended Backus Naur Form (EBNF), ISO/IEC 14977, Parser Expression Grammars (PEGs), Abstract Syntax Tre
41 lines • 1.23 kB
JSON
{
"version": "2.0.0",
"tasks": [
{
"label": "Build and Publish DEBUG",
"type": "shell",
"command": "make",
"args": ["debug","-f","${workspaceRoot}/makefile.macos"],
"windows": {
"command": "nmake",
"args": ["debug","-f","${workspaceRoot}\\makefile.win32"]
},
"linux": {
"args": ["debug","-f","${workspaceRoot}/makefile.linux"]
},
"group": {
"kind": "build",
"isDefault": true
},
"problemMatcher": []
},
{
"label": "Build and Publish RELEASE",
"type": "shell",
"command": "make",
"args": ["release","-f","${workspaceRoot}/makefile.macos"],
"windows": {
"command": "nmake",
"args": ["release","-f","${workspaceRoot}\\makefile.win32"]
},
"linux": {
"args": ["release","-f","${workspaceRoot}/makefile.linux"]
},
"group": {
"kind": "build",
"isDefault": true
},
"problemMatcher": []
}
]
}