Uppdaterat plan, README och lagt till VS Code bygg-tasks

This commit is contained in:
2026-04-25 22:45:09 +02:00
parent a5ab983206
commit 680a6f5f9e
3 changed files with 94 additions and 3 deletions

58
.vscode/tasks.json vendored Normal file
View File

@@ -0,0 +1,58 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "Build Windows",
"type": "shell",
"command": "go",
"args": [
"build",
"-o",
"release/windows/regin_mountain_game.exe",
"."
],
"options": {
"env": {
"GOOS": "windows",
"GOARCH": "amd64"
}
},
"group": "build",
"problemMatcher": [
"$go"
]
},
{
"label": "Build Linux",
"type": "shell",
"command": "go",
"args": [
"build",
"-o",
"release/linux/regin_mountain_game",
"."
],
"options": {
"env": {
"GOOS": "linux",
"GOARCH": "amd64"
}
},
"group": "build",
"problemMatcher": [
"$go"
]
},
{
"label": "Build All",
"dependsOn": [
"Build Windows",
"Build Linux"
],
"group": {
"kind": "build",
"isDefault": true
}
}
]
}