mirror of
https://github.com/GabsPuNs/Project-Zenith-Main.git
synced 2026-05-29 14:14:37 +00:00
27 lines
893 B
Markdown
27 lines
893 B
Markdown

|
|
|
|
Just another project.
|
|
|
|
|
|
## Platform Support
|
|
|
|
- **Windows**: Supported for building and running the project
|
|
- **macOS / Linux**: The Windows nightly build will run through Wine or CrossOver
|
|
- **All Consoles**: Console support remains in the code. Feel free to port the changes to the consoles edition!.
|
|
|
|
## Build & Run
|
|
|
|
1. Install [Visual Studio 2022](https://aka.ms/vs/17/release/vs_community.exe) or [newer](https://visualstudio.microsoft.com/downloads/).
|
|
2. Clone the repository.
|
|
3. Open the project folder from Visual Studio.
|
|
4. Set the build configuration to **Windows64 - Debug** (Release is also ok but missing some debug features), then build and run.
|
|
|
|
### CMake (Windows x64)
|
|
|
|
```powershell
|
|
cmake --preset windows64
|
|
cmake --build --preset windows64-debug --target Minecraft.Client
|
|
```
|
|
|
|
For more information, see [COMPILE.md](COMPILE.md).
|