neoLegacy/tools/performance-monitor/build-dll.bat
itsRevela be17d4028f feat: add performance monitor tool
DLL injector + Python GUI for real-time server metrics.
Hooks into tick loop, chunk generation, and player chunk map
to collect timing data over TCP, displayed in a tkinter dashboard.
Includes bot spawner for load testing.
2026-04-05 15:49:52 -05:00

26 lines
400 B
Batchfile

@echo off
echo Building perf-monitor.dll...
cd /d "%~dp0dll"
if not exist build mkdir build
cd build
cmake .. -G "Visual Studio 17 2022" -A x64
if errorlevel 1 (
echo CMake configure failed!
pause
exit /b 1
)
cmake --build . --config Release
if errorlevel 1 (
echo Build failed!
pause
exit /b 1
)
echo.
echo Build successful!
echo DLL: %cd%\Release\perf-monitor.dll
pause