Small fixes.

This commit is contained in:
Relintai 2023-04-06 23:42:55 +02:00
parent 7b6a76e4a0
commit cc0e25eb5d

View File

@ -1,6 +1,5 @@
# Compiling for Windows # Compiling for Windows
=====================
This page describes how to compile Windows editor and export template binaries from source. If you're looking to This page describes how to compile Windows editor and export template binaries from source. If you're looking to
export your project to Windows instead, read `doc_exporting_for_windows`. export your project to Windows instead, read `doc_exporting_for_windows`.
@ -21,24 +20,23 @@ For compiling under Windows, the following is required:
recommended, especially for proper support of recent Visual Studio releases. recommended, especially for proper support of recent Visual Studio releases.
### Note: ### Note:
If you have `Scoop ( https://scoop.sh/ )` installed, you can easily
install MinGW and other dependencies using the following command: If you have `Scoop ( https://scoop.sh/ )` installed, you can easily install MinGW and other dependencies using the following command:
``` ```
scoop install gcc python scons make scoop install gcc python scons make
``` ```
### Note: ### Note:
If you have `MSYS2 ( https://www.msys2.org/ )` installed, you can easily
install MinGW and other dependencies using the following command: If you have `MSYS2 ( https://www.msys2.org/ )` installed, you can easily install MinGW and other dependencies using the following command:
``` ```
pacman -S mingw-w64-x86_64-python3-pip mingw-w64-x86_64-gcc \ pacman -S mingw-w64-x86_64-python3-pip mingw-w64-x86_64-gcc \
mingw-w64-i686-python3-pip mingw-w64-i686-gcc make mingw-w64-i686-python3-pip mingw-w64-i686-gcc make
``` ```
For each MSYS2 MinGW subsystem, you should then run For each MSYS2 MinGW subsystem, you should then run `pip3 install scons` in its shell.
`pip3 install scons` in its shell.
### See also: ### See also: