Files

10 lines
237 B
Batchfile
Raw Permalink Normal View History

@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