dothack-j2me/.vscode/tasks.json

37 lines
819 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"label": "run emulator",
"type": "shell",
"command": "java -jar /home/sillysagiri/Downloads/microemulator-2.0.4/microemulator.jar '${workspaceFolder}/build/dothack-allscreen_debug.jar'",
"problemMatcher": [],
},
{
"label": "build debug",
"type": "shell",
"command": "ant debug",
"problemMatcher": [],
},
{
"label": "build release",
"type": "shell",
"command": "ant release",
"problemMatcher": [],
},
{
"label": "build & run",
"type": "shell",
"dependsOrder": "sequence",
"dependsOn": [
"build debug",
"run emulator"
],
"problemMatcher": [],
"group": {
"kind": "build",
"isDefault": true
}
}
]
}