mirror of
https://github.com/wiidev/usbloadergx.git
synced 2024-11-06 03:25:06 +01:00
21 lines
565 B
JSON
21 lines
565 B
JSON
|
{
|
||
|
"name": "devkitPPC",
|
||
|
"image": "mcr.microsoft.com/devcontainers/base:jammy",
|
||
|
"settings": {
|
||
|
"workbench.colorTheme": "Default Dark+",
|
||
|
"files.exclude": {
|
||
|
"Dockerfile": true
|
||
|
}
|
||
|
},
|
||
|
"onCreateCommand": "bash .devcontainer/on-create.sh",
|
||
|
"containerEnv": {
|
||
|
"DEVKITPRO": "/opt/devkitpro",
|
||
|
"DEVKITPPC": "/opt/devkitpro/devkitPPC",
|
||
|
"PATH": "${localEnv:PATH}:/opt/devkitpro/devkitPPC/bin"
|
||
|
},
|
||
|
"remoteUser": "root",
|
||
|
"extensions": [
|
||
|
"ms-vscode.cpptools-extension-pack"
|
||
|
]
|
||
|
}
|