Migrate build system to CMake for cross-platform support

This commit is contained in:
2026-06-10 13:14:34 +02:00
parent 5475fc301d
commit a2d3eda4e9
3 changed files with 104 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
@echo off
:: Build script for Windows
set BUILD_DIR=build
if not exist %BUILD_DIR% mkdir %BUILD_DIR%
cd %BUILD_DIR%
cmake ..
cmake --build . --config Release
cd ..
echo Build complete. Binary located in %BUILD_DIR%\Release\BudgetPro.exe