| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121 |
- {
- "tasks": [
- {
- "type": "shell",
- "label": "Build Everything (Debug)",
- "command": "${workspaceFolder}/build-all.sh",
- "windows": {
- "command": "${workspaceFolder}/build-all.bat",
- "args": [
- "windows",
- "build",
- "debug"
- ]
- },
- "linux": {
- "args": [
- "linux",
- "build",
- "debug"
- ]
- },
- "osx": {
- "args": [
- "macos",
- "build",
- "debug"
- ]
- },
- "options": {
- "cwd": "${workspaceFolder}"
- },
- "problemMatcher": [
- "$gcc"
- ],
- "group": {
- "kind": "build",
- "isDefault": true
- }
- },
- {
- "type": "shell",
- "label": "Build Everything (Release)",
- "command": "${workspaceFolder}/build-all.sh",
- "windows": {
- "command": "${workspaceFolder}/build-all.bat",
- "args": [
- "windows",
- "build",
- "release"
- ]
- },
- "linux": {
- "args": [
- "linux",
- "build",
- "release"
- ]
- },
- "osx": {
- "args": [
- "macos",
- "build",
- "release"
- ]
- },
- "options": {
- "cwd": "${workspaceFolder}"
- },
- "problemMatcher": [
- "$gcc"
- ],
- "group": {
- "kind": "build",
- }
- },
- {
- "type": "shell",
- "label": "Clean Everything",
- "command": "${workspaceFolder}/build-all.sh",
- "windows": {
- "command": "${workspaceFolder}\\build-all.bat",
- "args": [
- "windows",
- "clean",
- "all"
- ]
- },
- "linux": {
- "args": [
- "linux",
- "clean",
- "all"
- ]
- },
- "osx": {
- "args": [
- "macos",
- "clean",
- "all"
- ]
- },
- "options": {
- "cwd": "${workspaceFolder}"
- },
- "group": "build"
- },
- {
- "type": "shell",
- "label": "Post-Build",
- "command": "${workspaceFolder}/post-build.sh",
- "windows": {
- "command": "${workspaceFolder}/post-build.bat",
- },
- "options": {
- "cwd": "${workspaceFolder}"
- },
- "group": "build"
- }
- ],
- "version": "2.0.0"
- }
|