diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile new file mode 100644 index 0000000..23476da --- /dev/null +++ b/.devcontainer/Dockerfile @@ -0,0 +1,7 @@ +FROM mcr.microsoft.com/vscode/devcontainers/rust + +# Install Raylib deps +RUN apt-get update -y +RUN apt-get install libasound2-dev mesa-common-dev libx11-dev libxrandr-dev libxi-dev xorg-dev libgl1-mesa-dev libglu1-mesa-dev -y +RUN cargo install cross + diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json new file mode 100644 index 0000000..c661d3d --- /dev/null +++ b/.devcontainer/devcontainer.json @@ -0,0 +1,24 @@ +// { +// "name":"Rust Game Development", +// "dockerFile":"./Dockerfile", +// "settings": { +// "terminal.integrated.shell.linux":"/bin/bash" +// }, +// "workspaceMount": "source=${localWorkspaceFolder},target=/root/workspace,type=bind,consistency=cached", +// "workspaceFolder": "/root/workspace", +// "mounts": [ "source=/var/run/docker.sock,target=/var/run/docker-host.sock,type=bind" ], +// "forwardPorts": [], +// "extensions": [ +// "coenraads.bracket-pair-colorizer-2", +// "eamodio.gitlens", +// "github.vscode-pull-request-github", +// "ms-azuretools.vscode-docker", +// "ms-vsliveshare.vsliveshare", +// "vscode-icons-team.vscode-icons", +// "visualstudioexptteam.vscodeintellicode", +// "ms-python.python", +// "matklad.rust-analyzer", +// "serayuzgur.crates", +// "bungcip.better-toml" +// ] +// } \ No newline at end of file diff --git a/.vscode/extensions.json b/.vscode/extensions.json new file mode 100644 index 0000000..90c8b7b --- /dev/null +++ b/.vscode/extensions.json @@ -0,0 +1,12 @@ +{ + "recommendations": [ + "matklad.rust-analyzer", + "serayuzgur.crates", + "bungcip.better-toml", + "aaron-bond.better-comments", + "streetsidesoftware.code-spell-checker", + "codezombiech.gitignore", + "ionutvmi.path-autocomplete", + "ms-vsliveshare.vsliveshare" + ] +} \ No newline at end of file diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..ab1db25 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,5 @@ +{ + "cSpell.words": [ + "raylib" + ] +} \ No newline at end of file diff --git a/README.md b/README.md index 77e8a1f..9ddf00c 100644 --- a/README.md +++ b/README.md @@ -7,4 +7,8 @@ - [Raylib Rust documentation](https://docs.rs/raylib/3.5.0/raylib/) - [Raylib Rust examples](https://github.com/deltaphc/raylib-rs/tree/master/samples) - ["Are We Game Yet?"](https://arewegameyet.rs/#ecosystem) - - [`cross` cross-compiler tool](https://github.com/rust-embedded/cross) \ No newline at end of file + - [`cross` cross-compiler tool](https://github.com/rust-embedded/cross) + +### VSCode Setup + +If using VSCode, disable the `Rust` extension, and install everything in the **Workspace Recommendations** (You will see this list by searching `@recommended` in the extensions panel) \ No newline at end of file