mirror of
https://github.com/Polprzewodnikowy/N64FlashcartMenu.git
synced 2024-11-22 02:29:19 +01:00
Minor improvements
This commit is contained in:
parent
06054478e5
commit
00264c6081
@ -1,20 +1,26 @@
|
|||||||
{
|
{
|
||||||
"name": "N64FlashcartMenu",
|
"name": "N64FlashcartMenu",
|
||||||
// If you prefer, you can use the source files and adjust them they are located, with the same names in ./sources. This will alow you to customize them and add anything you may need on top.
|
// If you prefer, you can use the source files and adjust them they are located, with the same names in ./sources. This will alow you to customize them and add anything you may need on top.
|
||||||
"dockerFile": "Dockerfile",
|
"dockerFile": "Dockerfile",
|
||||||
"context": ".",
|
"context": ".",
|
||||||
"mounts": [
|
"mounts": [
|
||||||
"source=/var/run/docker.sock,target=/var/run/docker.sock,type=bind",
|
"source=/var/run/docker.sock,target=/var/run/docker.sock,type=bind",
|
||||||
// Keep command history
|
// Keep command history
|
||||||
"source=nano-bashhistory,target=/home/vscode/commandhistory,type=volume",
|
"source=nano-bashhistory,target=/home/vscode/commandhistory,type=volume"//,
|
||||||
],
|
// Could this handle USB?
|
||||||
// Set *default* container specific settings.json values on container create.
|
// "type=bind,source=/dev/bus/usb,target=/dev/bus/usb"
|
||||||
"settings": {
|
],
|
||||||
},
|
"customizations": {
|
||||||
// Add the IDs of extensions you want installed when the container is created.
|
"vscode": {
|
||||||
"extensions": [
|
// Set *default* container specific settings.json values on container create.
|
||||||
"ms-vsliveshare.vsliveshare-pack",
|
"settings": {
|
||||||
"streetsidesoftware.code-spell-checker",
|
},
|
||||||
"ms-vscode.makefile-tools"
|
// Add the IDs of extensions you want installed when the container is created.
|
||||||
]
|
"extensions": [
|
||||||
|
"ms-vsliveshare.vsliveshare-pack",
|
||||||
|
"streetsidesoftware.code-spell-checker",
|
||||||
|
"ms-vscode.makefile-tools"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
2
Makefile
2
Makefile
@ -35,7 +35,7 @@ clean:
|
|||||||
$(shell rm -rf ./$(BUILD_DIR))
|
$(shell rm -rf ./$(BUILD_DIR))
|
||||||
.PHONY: clean
|
.PHONY: clean
|
||||||
|
|
||||||
finalize-sc64:
|
finalize-sc64:
|
||||||
$(shell cd ./$(BUILD_DIR) && python3 ../tools/finalize.py ./$(EXE_NAME).z64)
|
$(shell cd ./$(BUILD_DIR) && python3 ../tools/finalize.py ./$(EXE_NAME).z64)
|
||||||
|
|
||||||
-include $(wildcard $(BUILD_DIR)/*.d)
|
-include $(wildcard $(BUILD_DIR)/*.d)
|
||||||
|
Loading…
Reference in New Issue
Block a user