Fix typos in INSTALL.MD

This commit is contained in:
mrkubax10 2023-10-23 19:59:49 +02:00
parent 66d933f2f5
commit 9663247904

View File

@ -53,7 +53,7 @@
For `BUILD_CLIENT`:
| Library | Description | Required for | Custom CMake variables |
|----------------------------------------------------------------------------|--------------------------------|----------------------------------|------------------------------------------------------------|
| OpenGL | Rendering via OpenGL api | `RENDERER_{LEGACY}_GL` | *none* |
| OpenGL | Rendering via OpenGL api | `RENDERER_{LEGACY}_GL` | - `OPENGL_INCLUDE_DIR`<br>- `OPENGL_LIBRARIES` |
| [Xlib](https://www.x.org/wiki) | Window creation using X11 | `WINDOW_X11` | - `X11_INCLUDE_DIR`<br>- `X11_LIBRARIES` |
| [libwayland-client](https://wayland.freedesktop.org) | Window creation using Wayland | `WINDOW_WAYLAND` | - `WaylandClient_INCLUDE_DIR`<br>- `WaylandClient_LIBRARY` |
| [libwayland-egl](https://wayland.freedesktop.org) | Using EGL with Wayland | `WINDOW_WAYLAND` + `RENDERER_GL` | - `WaylandEGL_INCLUDE_DIR`<br>- `WaylandClient_LIBRARY` |
@ -103,11 +103,12 @@ to reduce used disk space via not downloading entire git history.
### Windows with MSYS2
1. Install all the required libs through pacman. (see MSYS2 dependencies below)
2. Download and extract latest AngelScript source package to `external/angelscript` inside of repository root.
3. Clone master na go into the root dir.
3. Clone master and go into the root dir.
4. Open MSYS2 MinGW64 terminal.
5. cmake . -G"MSYS Makefiles" -DBUILD_CLIENT=ON -DBUILD_SERVER=ON -DRENDERER_GL=ON
6. make -j[how many processors]
7. Make sure to add `C:\msys64\mingw64\bin` (or wherever your MSYS2 is installed) to PATH if you're getting missing dll errors.
5. Create build folder: `mkdir build` and enter it.
6. Run `cmake .. -G"MSYS Makefiles"`
7. Run `make -j[how many processors]`
8. Make sure to add `C:\msys64\mingw64\bin` (or wherever your MSYS2 is installed) to PATH if you're getting missing dll errors.
### MSYS2 dependencies install commands
```