Moved psxcdgen files to tools folder

This commit is contained in:
jaby 2022-08-21 13:20:53 +02:00
parent 69074600cc
commit 37a7c582e7
41 changed files with 0 additions and 84 deletions

View File

@ -1,84 +0,0 @@
{
"folders": [
{
"path": "."
}
],
"tasks": {
"version": "2.0.0",
"tasks": [
{
"label": "cargo",
"type": "shell",
"command": "cargo ${input:cmd} --${input:cfg}",
"problemMatcher": [],
"group": {
"kind": "build",
"isDefault": true
},
"options":
{
"cwd": "${workspaceFolder}/${input:project}"
},
},
{
"label": "run psxcdread with",
"type": "shell",
"command": "cargo run --release -- ${input:psxcdread_parameter}",
"problemMatcher": [],
"group": {
"kind": "build",
"isDefault": true,
},
"options":
{
"cwd": "${workspaceFolder}/psxcdread"
}
},
{
"label": "run psxcdgen with",
"type": "shell",
"command": "cargo run --release -- Dino.xml",
"problemMatcher": [],
"group": {
"kind": "build",
"isDefault": true,
},
"options":
{
"cwd": "${workspaceFolder}/psxcdgen"
}
}
],
"inputs": [
{
"id": "cmd",
"type": "pickString",
"description": "Command to use",
"options": ["check", "test", "run", "build", "clean"],
"default": "run"
},
{
"id": "cfg",
"type": "pickString",
"description": "Configuration for the project",
"options": ["debug", "release"],
"default": "release"
},
{
"id": "project",
"type": "pickString",
"description": "Project to run cargo for",
"options": ["psxcdgen", "psxcdread", "cdtypes"],
"default": "psxcdgen"
},
{
"id": "psxcdread_parameter",
"type": "pickString",
"description": "Parameter for tool",
"options": ["../../../iso/JabyEngine.bin", "../../../iso/JabyEngine.cue", "../Output/Test.bin"]
}
],
},
"settings": {}
}