ox

The Ox programming language, compiler and tools (WIP)
Log | Files | Refs | README | LICENSE

tasks.json (500B)


      1 // .vscode/tasks.json
      2 {
      3     "version": "2.0.0",
      4     "tasks": [
      5         {
      6             "label": "build-ox",
      7             "type": "shell",
      8             "command": "make",
      9             "args": ["check"],
     10             "problemMatcher": [],
     11             "presentation": {
     12                 "reveal": "never",
     13                 "echo": false,
     14                 "focus": false,
     15                 "panel": "shared",
     16                 "showReuseMessage": false,
     17                 "clear": false
     18             }
     19         }
     20     ]
     21 }