Files
UnrealEngine/Engine/Source/ThirdParty/libpas/build.bat
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05:00

24 lines
834 B
Batchfile
Executable File

@rem Copyright Epic Games, Inc. All Rights Reserved.
@echo off
setlocal enabledelayedexpansion
p4 edit x64\DebugUE\libpas.lib x64\ReleaseUE\libpas.lib ARM64\DebugUE\libpas.lib ARM64\ReleaseUE\libpas.lib
if %errorlevel% neq 0 exit /b 1
msbuild libpas.sln -p:Configuration=Debug -p:Platform=x64
if %errorlevel% neq 0 exit /b 1
msbuild libpas.sln -p:Configuration=ReleaseTesting -p:Platform=x64
if %errorlevel% neq 0 exit /b 1
msbuild libpas.vcxproj -p:Configuration=DebugUE -p:Platform=x64
if %errorlevel% neq 0 exit /b 1
msbuild libpas.vcxproj -p:Configuration=ReleaseUE -p:Platform=x64
if %errorlevel% neq 0 exit /b 1
msbuild libpas.vcxproj -p:Configuration=DebugUE -p:Platform=ARM64
if %errorlevel% neq 0 exit /b 1
msbuild libpas.vcxproj -p:Configuration=ReleaseUE -p:Platform=ARM64
if %errorlevel% neq 0 exit /b 1
echo SUCCESS