mirror of
https://github.com/neoStudiosLCE/neoLegacy.git
synced 2026-08-06 13:32:26 +00:00
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.
26 lines
400 B
Batchfile
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
|