123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- {
- "version": "2.0.0",
- "tasks": [
- {
- "label": "make example",
- "type": "shell",
- "command": "make example",
- "problemMatcher": [
- "$gcc"
- ],
- "group": {
- "kind": "build",
- "isDefault": true
- }
- },
- {
- "label": "make clean",
- "type": "shell",
- "command": "make clean",
- "problemMatcher": [
- "$gcc"
- ],
- "group": "build"
- },
- {
- "label": "make unittest",
- "type": "shell",
- "command": "make unittest",
- "problemMatcher": [
- "$gcc"
- ]
- },
- {
- "label": "make integrationtest",
- "type": "shell",
- "command": "make integrationtest",
- "problemMatcher": [
- "$gcc"
- ]
- },
- {
- "label": "make integrationtest_auth",
- "type": "shell",
- "command": "make integrationtest_auth",
- "problemMatcher": [
- "$gcc"
- ]
- },
- {
- "label": "make integrationtest_transport",
- "type": "shell",
- "command": "make integrationtest_transport",
- "problemMatcher": [
- "$gcc"
- ]
- },
- {
- "label": "make test",
- "type": "shell",
- "command": "make test",
- "problemMatcher": [
- "$gcc"
- ],
- "group": {
- "kind": "test",
- "isDefault": true
- }
- },
- {
- "type": "shell",
- "label": "gcc build active file",
- "command": "/usr/bin/gcc",
- "args": [
- "-g",
- "${file}",
- "-o",
- "${fileDirname}/${fileBasenameNoExtension}"
- ],
- "options": {
- "cwd": "/usr/bin"
- }
- }
- ]
- }
|