Skip to content

Instantly share code, notes, and snippets.

@stanbot8
stanbot8 / UE5 BuildProject.bat
Last active February 6, 2026 02:13
One-click Unreal Engine project builder. Auto-detects .uproject and engine version, generates project files, builds, and launches the editor. Drop into your project root and run it.
@echo off
setlocal enabledelayedexpansion
:: === AUTO-DETECT PROJECT ===
set "SCRIPT_DIR=%~dp0"
cd /d "%SCRIPT_DIR%"
set "PROJECT_PATH="
for %%f in (*.uproject) do set "PROJECT_PATH=%SCRIPT_DIR%%%f"