mirror of
https://github.com/thepigeongenerator/sdl_template.git
synced 2025-12-17 05:55:47 +01:00
makefile can now also execute code
This commit is contained in:
58
.vscode/tasks.json
vendored
58
.vscode/tasks.json
vendored
@@ -1,58 +0,0 @@
|
||||
{
|
||||
"version": "2.0.0",
|
||||
"options": {
|
||||
"env": {
|
||||
"DEBUG": "1"
|
||||
}
|
||||
},
|
||||
"tasks": [
|
||||
{
|
||||
"type": "shell",
|
||||
"label": "build linux-x86_64",
|
||||
"command": "make",
|
||||
"args": [
|
||||
"linux-x86_64"
|
||||
],
|
||||
"options": {
|
||||
"cwd": "${workspaceFolder}"
|
||||
},
|
||||
"group": {
|
||||
"kind": "build",
|
||||
"isDefault": true
|
||||
},
|
||||
"detail": "builds the program for linux x86_64"
|
||||
},
|
||||
{
|
||||
"type": "shell",
|
||||
"label": "build win-x86_64",
|
||||
"command": "make",
|
||||
"args": [
|
||||
"win-x86_64"
|
||||
],
|
||||
"options": {
|
||||
"cwd": "${workspaceFolder}"
|
||||
},
|
||||
"group": {
|
||||
"kind": "build",
|
||||
"isDefault": false
|
||||
},
|
||||
"detail": "builds the program for windows x86_64"
|
||||
},
|
||||
{
|
||||
"type": "shell",
|
||||
"label": "build web",
|
||||
"command": "make",
|
||||
"args": [
|
||||
"web"
|
||||
],
|
||||
"options": {
|
||||
"cwd": "${workspaceFolder}"
|
||||
},
|
||||
"group": {
|
||||
"kind": "build",
|
||||
"isDefault": false
|
||||
},
|
||||
"detail": "builds the program for web using emscripten"
|
||||
}
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user