123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- {
- // See https://go.microsoft.com/fwlink/?LinkId=733558
- // for the documentation about the tasks.json format
- "version": "2.0.0",
- "tasks": [
- {
- "label": "build",
- "type": "shell",
- "command": "scons",
- "problemMatcher": [
- "$gcc"
- ],
- "presentation": {
- "echo": true,
- "reveal": "always",
- "focus": true,
- "panel": "shared",
- "showReuseMessage": true
- },
- "group": {
- "kind": "build",
- "isDefault": true
- }
- },
- {
- "label": "clean",
- "type": "shell",
- "command": "scons -c",
- "problemMatcher": [],
- "presentation": {
- "echo": true,
- "reveal": "always",
- "focus": true,
- "panel": "shared",
- "showReuseMessage": true
- }
- },
- {
- "label": "qemu simulator",
- "type": "shell",
- "command": "qemu.bat",
- "problemMatcher" : []
- }
- ]
- }
|