You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
13 lines
546 B
Batchfile
13 lines
546 B
Batchfile
REM PhysX
|
|
setlocal
|
|
|
|
REM PhysX root is always next to UE4, since that's how p4 is structured, and we know that we are always in UE4\Engine\Source\ThirdParty\PhysX
|
|
REM This batch file wouldn't work otherwise
|
|
set PhysXRoot=..\NotForLicensees\PhysX
|
|
|
|
REM Go to the branch
|
|
pushd %PhysXRoot%
|
|
call UE4_BuildThirdPartyLib.bat %THIRD_PARTY_CHANGELIST% -submit -config debug -config profile -platformPhysx vc12win32;Win32 -platformPhysx vc12win64;x64 -platformAPEX vc12win32-PhysX_3.3;Win32 -platformAPEX vc12win64-PhysX_3.3;x64 -platformAPEX
|
|
popd
|
|
|
|
endlocal |