4c2b1be3a4
* Basic VSCode configuration for building and debugging * Fix building and debugging in Windows * Move to contrib folder and add instructions
51 lines
1.2 KiB
JSON
51 lines
1.2 KiB
JSON
{
|
|
"version": "2.0.0",
|
|
"tasks": [
|
|
{
|
|
"taskName": "Build",
|
|
"type": "shell",
|
|
"command": "go",
|
|
"group": "build",
|
|
"presentation": {
|
|
"echo": true,
|
|
"reveal": "always",
|
|
"focus": false,
|
|
"panel": "shared"
|
|
},
|
|
"args": ["build"],
|
|
"linux": {
|
|
"args": [ "-o", "gitea", "${workspaceRoot}/main.go" ]
|
|
},
|
|
"osx": {
|
|
"args": [ "-o", "gitea", "${workspaceRoot}/main.go" ]
|
|
},
|
|
"windows": {
|
|
"args": [ "-o", "gitea.exe", "\"${workspaceRoot}\\main.go\""]
|
|
},
|
|
"problemMatcher": ["$go"]
|
|
},
|
|
{
|
|
"taskName": "Build (with SQLite3)",
|
|
"type": "shell",
|
|
"command": "go",
|
|
"group": "build",
|
|
"presentation": {
|
|
"echo": true,
|
|
"reveal": "always",
|
|
"focus": false,
|
|
"panel": "shared"
|
|
},
|
|
"args": ["build", "-tags=\"sqlite\""],
|
|
"linux": {
|
|
"args": ["-o", "gitea", "${workspaceRoot}/main.go"]
|
|
},
|
|
"osx": {
|
|
"args": ["-o", "gitea", "${workspaceRoot}/main.go"]
|
|
},
|
|
"windows": {
|
|
"args": ["-o", "gitea.exe", "\"${workspaceRoot}\\main.go\""]
|
|
},
|
|
"problemMatcher": ["$go"]
|
|
}
|
|
]
|
|
}
|