mirror of
https://github.com/thepigeongenerator/tetris_clone.git
synced 2025-12-17 14:05:45 +01:00
63 lines
1.5 KiB
JSON
63 lines
1.5 KiB
JSON
{
|
|
"tasks": [
|
|
{
|
|
"type": "shell",
|
|
"label": "build linux86_64",
|
|
"command": "./build.sh",
|
|
"args": [
|
|
"linux86_64"
|
|
],
|
|
"options": {
|
|
"cwd": "${workspaceFolder}"
|
|
},
|
|
"problemMatcher": [
|
|
"$gcc"
|
|
],
|
|
"group": {
|
|
"kind": "build",
|
|
"isDefault": true
|
|
},
|
|
"detail": "builds the program for linux x86_64"
|
|
},
|
|
{
|
|
"type": "shell",
|
|
"label": "build win86_64",
|
|
"command": "./build.sh",
|
|
"args": [
|
|
"win86_64"
|
|
],
|
|
"options": {
|
|
"cwd": "${workspaceFolder}"
|
|
},
|
|
"problemMatcher": [
|
|
"$gcc"
|
|
],
|
|
"group": {
|
|
"kind": "build",
|
|
"isDefault": false
|
|
},
|
|
"detail": "builds the program for windows x86_64"
|
|
},
|
|
{
|
|
"type": "shell",
|
|
"label": "build web",
|
|
"command": "./build.sh",
|
|
"args": [
|
|
"web"
|
|
],
|
|
"options": {
|
|
"cwd": "${workspaceFolder}"
|
|
},
|
|
"problemMatcher": [
|
|
"$gcc"
|
|
],
|
|
"group": {
|
|
"kind": "build",
|
|
"isDefault": false
|
|
},
|
|
"detail": "builds the program for web using emscripten"
|
|
}
|
|
],
|
|
"version": "2.0.0"
|
|
}
|