123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204 |
- {
- // See https://go.microsoft.com/fwlink/?LinkId=733558
- // for the documentation about the tasks.json format
- "version": "2.0.0",
- "windows": {
- "options": {
- "env": {
- "Path": "${config:terminal.integrated.env.windows.Path}"
- }
- }
- },
- "linux": {
- "options": {
- "env": {
- "PATH": "${config:terminal.integrated.env.linux.PATH}"
- }
- }
- },
- "osx": {
- "options": {
- "env": {
- "PATH": "${config:terminal.integrated.env.osx.PATH}"
- }
- }
- },
- "presentation": {
- "echo": false,
- "reveal": "always",
- "focus": true,
- "panel": "shared",
- "clear": false,
- "showReuseMessage": true
- },
- "tasks": [
- {
- "label": "Build & Run: Release",
- "command": "bash ./build.sh buildrun Release vscode",
- "type": "shell",
- "group": {
- "kind": "build",
- "isDefault": true
- },
- "problemMatcher": [
- "$gcc"
- ],
- },
- {
- "label": "Build: Release",
- "command": "bash ./build.sh build Release vscode",
- "type": "shell",
- "group": {
- "kind": "build",
- "isDefault": true
- },
- "problemMatcher": [
- "$gcc"
- ]
- },
- {
- "label": "Run: Release",
- "command": "bash ./build.sh run Release vscode",
- "type": "shell",
- "group": {
- "kind": "build",
- "isDefault": true
- },
- "problemMatcher": [
- "$gcc"
- ]
- },
- {
- "label": "Rebuild: Release",
- "command": "bash ./build.sh rebuild Release vscode",
- "type": "shell",
- "group": {
- "kind": "build",
- "isDefault": true
- },
- "problemMatcher": [
- "$gcc"
- ]
- },
- {
- "label": "Build & Run: Debug",
- "command": "bash ./build.sh buildrun Debug vscode",
- "type": "shell",
- "group": {
- "kind": "build",
- "isDefault": true
- },
- "problemMatcher": [
- "$gcc"
- ]
- },
- {
- "label": "Build: Debug",
- "command": "bash ./build.sh build Debug vscode",
- "type": "shell",
- "group": {
- "kind": "build",
- "isDefault": true
- },
- "problemMatcher": [
- "$gcc"
- ]
- },
- {
- "label": "Run: Debug",
- "command": "bash ./build.sh run Debug vscode",
- "type": "shell",
- "group": {
- "kind": "build",
- "isDefault": true
- },
- "problemMatcher": [
- "$gcc"
- ]
- },
- {
- "label": "Rebuild: Debug",
- "command": "bash ./build.sh rebuild Debug vscode",
- "type": "shell",
- "group": {
- "kind": "build",
- "isDefault": true
- },
- "problemMatcher": [
- "$gcc"
- ]
- },
- {
- "label": "Profile: Debug",
- "command": "bash ./build.sh profile Debug vscode",
- "type": "shell",
- "group": {
- "kind": "build",
- "isDefault": true
- },
- "problemMatcher": [
- "$gcc"
- ]
- },
- {
- "label": "Build & Run: Tests",
- "command": "bash ./build.sh buildrun Tests vscode '-w NoTests -s'",
- "type": "shell",
- "group": {
- "kind": "build",
- "isDefault": true
- },
- "problemMatcher": [
- "$gcc"
- ]
- },
- {
- "label": "Build: Tests",
- "command": "bash ./build.sh build Tests vscode",
- "type": "shell",
- "group": {
- "kind": "build",
- "isDefault": true
- },
- "problemMatcher": [
- "$gcc"
- ]
- },
- {
- "label": "Run: Tests",
- "command": "bash ./build.sh run Tests vscode '-w NoTests -s'",
- "type": "shell",
- "group": {
- "kind": "build",
- "isDefault": true
- },
- "problemMatcher": [
- "$gcc"
- ]
- },
- {
- "label": "Rebuild: Tests",
- "command": "bash ./build.sh rebuild Tests vscode",
- "type": "shell",
- "group": {
- "kind": "build",
- "isDefault": true
- },
- "problemMatcher": [
- "$gcc"
- ]
- },
- {
- "label": "Build: Production",
- "command": "bash ./build.sh buildprod Release vscode",
- "type": "shell",
- "group": {
- "kind": "build",
- "isDefault": true
- },
- "problemMatcher": [
- "$gcc"
- ]
- }
- ]
- }
|