Moved psxcdgen files to tools folder
This commit is contained in:
parent
0e43e056cc
commit
6693e44d93
|
@ -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": {}
|
|
||||||
}
|
|
Loading…
Reference in New Issue