mirror of
https://github.com/Jacobwasbeast/LegacyWeaveLoader.git
synced 2026-05-25 07:04:34 +00:00
483 B
483 B
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:
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:
cd WeaveLoaderRuntime
cmake -B build -A x64
cmake --build build --config Release