From 6b82cb8e92d450bff2978635e5e10c041ac444d3 Mon Sep 17 00:00:00 2001 From: maxluli Date: Mon, 9 May 2022 13:10:45 +0200 Subject: [PATCH] Added instructions for Windows Support --- ReadMe.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/ReadMe.md b/ReadMe.md index 7f9c060..ed256c4 100644 --- a/ReadMe.md +++ b/ReadMe.md @@ -5,6 +5,11 @@ A simple version wich may include some upgrades from the tetra crate tutorial po You have to have Rust installed But you also need SDL to run it, here is how to install it : ### Windows +1. Go to the SDL website and download the version of the SDL2 development libraries that corresponds to your Rust toolchain. +If you're using the MSVC toolchain, download the Visual C++ version. +If you're using the GNU toolchain, download the MinGW version. +2. Inside the .zip file, open the SDL2-2.0.x/lib/x64 folder and extract SDL2.lib and SDL2.dll to the root of your Cargo project. +If you're on a 32-bit system, use the files in SDL2-2.0.x/lib/x86 instead. Sdl Website ### Linux ``` @@ -20,6 +25,7 @@ sudo pacman -S sdl2 ### MacOs ``` brew install sdl2 + # You will also need to add the following to your ~/.bash_profile, if it is not already present. export LIBRARY_PATH="$LIBRARY_PATH:/usr/local/lib" ```