Update README for Windows builds

This commit is contained in:
Lior Halphon 2023-12-16 19:54:40 +02:00
parent 6e923645d3
commit 3fd09ffcde
2 changed files with 5 additions and 5 deletions

View File

@ -48,7 +48,7 @@ SameBoy requires the following tools and libraries to build:
On Windows, SameBoy also requires: On Windows, SameBoy also requires:
* Visual Studio (For headers, etc.) * Visual Studio (For headers, etc.)
* [GnuWin](http://gnuwin32.sourceforge.net/) * [GnuWin](http://gnuwin32.sourceforge.net/)
* Running vcvars32 before running make. Make sure all required tools and libraries are in %PATH% and %lib%, respectively. (see [Build FAQ](https://github.com/LIJI32/SameBoy/blob/master/build-faq.md) for more details on Windows compilation) * Running vcvars64 before running make. Make sure all required tools and libraries are in %PATH% and %lib%, respectively. (see [Build FAQ](https://github.com/LIJI32/SameBoy/blob/master/build-faq.md) for more details on Windows compilation)
To compile, simply run `make`. The targets are: To compile, simply run `make`. The targets are:
* `cocoa` (Default for macOS) * `cocoa` (Default for macOS)

View File

@ -15,11 +15,11 @@ For the various tools and libraries, follow the below guide to ensure easy, prop
### SDL2 ### SDL2
For [libSDL2](https://libsdl.org/download-2.0.php), download the Visual C++ Development Library pack. Place the extracted files within a known folder for later. Both the `\x86\` and `\include\` paths will be needed. For [libSDL2](https://libsdl.org/download-2.0.php), download the Visual C++ Development Library pack. Place the extracted files within a known folder for later. Both the `\x64\` and `\include\` paths will be needed.
The following examples will be referenced later: The following examples will be referenced later:
- `C:\SDL2\lib\x86\*` - `C:\SDL2\lib\x64\*`
- `C:\SDL2\include\*` - `C:\SDL2\include\*`
### rgbds ### rgbds
@ -35,8 +35,8 @@ Ensure that the `gnuwin32\bin\` directory is included in `%PATH%`. Like rgbds ab
Within a command prompt in the project directory: Within a command prompt in the project directory:
``` ```
vcvars32 vcvars64
set lib=%lib%;C:\SDL2\lib\x86 set lib=%lib%;C:\SDL2\lib\x64
set include=%include%;C:\SDL2\include set include=%include%;C:\SDL2\include
make make
``` ```