mirror of
https://github.com/EsotericSoftware/spine-runtimes.git
synced 2026-02-04 22:34:53 +08:00
57 lines
1.6 KiB
JSON
57 lines
1.6 KiB
JSON
{
|
|
"version": "2.0.0",
|
|
"tasks": [
|
|
{
|
|
"label": "build-v4",
|
|
"group": "build",
|
|
"type": "shell",
|
|
"command": "scons",
|
|
"options": {
|
|
"cwd": "${workspaceFolder}/godot"
|
|
},
|
|
"args": [
|
|
"-j",
|
|
"16",
|
|
"target=editor",
|
|
"dev_build=yes",
|
|
"custom_modules=\"${workspaceFolder}/spine_godot\""
|
|
],
|
|
"problemMatcher": "$msCompile",
|
|
"windows": {
|
|
"args": [
|
|
"-j",
|
|
"16",
|
|
"target=editor",
|
|
"dev_build=yes",
|
|
"custom_modules=\"${workspaceFolder}/spine_godot\"",
|
|
"livepp=${env:LIVEPP}"
|
|
]
|
|
},
|
|
},
|
|
{
|
|
"label": "build-v3",
|
|
"group": "build",
|
|
"type": "shell",
|
|
"command": "scons",
|
|
"options": {
|
|
"cwd": "${workspaceFolder}/godot"
|
|
},
|
|
"args": [
|
|
"-j",
|
|
"16",
|
|
"target=debug",
|
|
"custom_modules=\"${workspaceFolder}/spine_godot\""
|
|
],
|
|
"windows": {
|
|
"args": [
|
|
"-j",
|
|
"16",
|
|
"target=debug",
|
|
"custom_modules=\"${workspaceFolder}/spine_godot\"",
|
|
"livepp=${env:LIVEPP}"
|
|
]
|
|
},
|
|
"problemMatcher": "$msCompile"
|
|
}
|
|
]
|
|
} |