You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
20 lines
330 B
Batchfile
20 lines
330 B
Batchfile
@echo off
|
|
|
|
REM %1 is the game name
|
|
REM %2 is the platform name
|
|
REM %3 is the configuration name
|
|
|
|
IF EXIST "%~dp0\Clean.bat" (
|
|
call "%~dp0\Clean.bat" %*
|
|
) ELSE (
|
|
ECHO Clean.bat not found in %~dp0
|
|
EXIT /B 999
|
|
)
|
|
|
|
IF EXIST "%~dp0\Build.bat" (
|
|
call "%~dp0\Build.bat" %*
|
|
) ELSE (
|
|
ECHO Build.bat not found in %~dp0
|
|
EXIT /B 999
|
|
)
|