Updated CmakeList

This commit is contained in:
2026-03-15 19:39:35 +01:00
commit e152bf93b3
20 changed files with 566 additions and 0 deletions

11
generate.bat Normal file
View File

@@ -0,0 +1,11 @@
echo Generating vs2026 project files...
where cmake >target 2>nul
if %ERRORLEVEL% neq 0 (
echo HIBA: A CMake nincs telepitve, vagy nincs hozzaadva a PATH-hoz.
pause
exit /b 1
)
cmake -G "Visual Studio 18 2026" -A x64
echo Done
PAUSE