1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- {
- "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",
- "opengl3=yes",
- "custom_modules=\"${workspaceFolder}/spine_godot\""
- ],
- "problemMatcher": "$msCompile",
- "windows": {
- "args": [
- "-j",
- "16",
- "target=editor",
- "dev_build=yes",
- "opengl3=yes",
- "custom_modules=\"${workspaceFolder}/spine_godot\"",
- "livepp=${env:LIVEPP}"
- ]
- },
- },
- {
- "label": "build-extension",
- "group": "build",
- "type": "shell",
- "command": "scons",
- "options": {
- "cwd": "${workspaceFolder}"
- },
- "args": [
- "-j",
- "16",
- "target=editor",
- "dev_build=yes",
- ],
- "problemMatcher": "$msCompile",
- "windows": {
- "args": [
- "-j",
- "16",
- "target=editor",
- "dev_build=yes",
- ]
- },
- },
- {
- "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"
- }
- ]
- }
|