mirror of
https://github.com/Jacobwasbeast/LegacyWeaveLoader.git
synced 2026-06-08 05:53:07 +00:00
29 lines
483 B
Markdown
29 lines
483 B
Markdown
# Building
|
|
|
|
## Prerequisites
|
|
|
|
- Visual Studio 2022+ with C++ Desktop Development and .NET 8 workloads
|
|
- CMake 3.24+
|
|
- .NET 8 SDK
|
|
|
|
## Build steps
|
|
|
|
Build everything from the repo root:
|
|
|
|
```bash
|
|
dotnet build WeaveLoader.sln -c Debug
|
|
```
|
|
|
|
Outputs go to `build/`.
|
|
|
|
## Notes
|
|
|
|
- The launcher builds the native runtime automatically.
|
|
- If you only need the runtime DLL, you can build it directly:
|
|
|
|
```bash
|
|
cd WeaveLoaderRuntime
|
|
cmake -B build -A x64
|
|
cmake --build build --config Release
|
|
```
|