Added winget install instructions to readme

This commit is contained in:
Simon Lübeß
2026-08-02 12:04:41 +02:00
parent 8ccbc565ad
commit c56db0f069
+2 -2
View File
@@ -9,10 +9,10 @@ To build the engine and its vendored dependencies, install the following tools o
|-----------------------------|----------------------------------------------|---------------------------------------|
| Visual Studio 2022 | MSVC toolchain, MSBuild, vswhere | Installer — with the *Desktop development with C++* workload |
| .NET SDK 10 | Builds the `bin/BuildTool` C# orchestrator, also required for scripting | https://dotnet.microsoft.com/download |
| CMake | Builds `GlitchyEngineHelper` and some vendor libs | `scoop install cmake` |
| CMake | Builds `GlitchyEngineHelper` and some vendor libs | `scoop install cmake` or `winget install cmake` |
| [Python 3](https://www.python.org/) + pip | Required by Meson and some vendor build scripts | `winget install Python.Python.3.13` (or use [uv](https://github.com/astral-sh/uv)) |
| [Meson](https://mesonbuild.com/) | Configures Freetype, Harfbuzz, Fribidi builds | `uv tool install meson` *or* `pip install --user meson` |
| [Ninja](https://ninja-build.org/) | Backend build system used by Meson | `scoop install ninja` |
| [Ninja](https://ninja-build.org/) | Backend build system used by Meson | `scoop install ninja` or `winget install Ninja-build.Ninja` |
| [pkg-config](https://www.freedesktop.org/wiki/Software/pkg-config/) | Resolves library metadata during Meson builds | `scoop install pkg-config` |
| Beef compiler (`beefbuild`) | Compiles the Beef workspace | https://www.beeflang.org/ |