Files
UnrealEngineUWP/Engine/Source/ThirdParty/Python/CopyPythonInstall_Win64.bat
ryan gerleve b41214417e Resolving conflict from Dev-Enterprise.
/src/ROBOMERGE_ENGINE_Dev_Networking/Engine/Source/Runtime/Sockets/Private/BSDSockets/SocketsBSD.cpp - merging //UE4/Main/Engine/Source/Runtime/Sockets/Private/BSDSockets/SocketsBSD.cpp#20


--------------------------------------
Copying //UE4/Dev-Enterprise[at]4705006 to Dev-Main (//UE4/Dev-Main)

#rb none
#lockdown Nick.Penwarden

#ROBOMERGE-OWNER: ryan.gerleve
#ROBOMERGE-AUTHOR: francis.hurteau
#ROBOMERGE-SOURCE: CL 4705151 in //UE4/Main/...
#ROBOMERGE-BOT: ENGINE (Main -> Dev-Networking)

[CL 4712032 by ryan gerleve in Dev-Networking branch]
2019-01-11 14:26:15 -05:00

44 lines
1.4 KiB
Batchfile

@ECHO OFF
SETLOCAL ENABLEEXTENSIONS
SET python_arch_name=Win64
SET python_lib_dest_name=.\%python_arch_name%
SET python_bin_dest_name=..\..\..\Binaries\ThirdParty\Python\%python_arch_name%
SET python_src_name=Python27
SET python_src_dir=C:\%python_src_name%
IF NOT EXIST %python_src_dir% (
ECHO Python Source Directory Missing: %python_src_dir%
GOTO End
)
IF EXIST %python_lib_dest_name% (
ECHO Removing Existing Target Directory: %python_lib_dest_name%
RMDIR "%python_lib_dest_name%" /s /q
)
IF EXIST %python_bin_dest_name% (
ECHO Removing Existing Target Directory: %python_bin_dest_name%
RMDIR "%python_bin_dest_name%" /s /q
)
ECHO Copying Python: %python_src_dir%
XCOPY /s /i /q "%python_src_dir%" "%python_bin_dest_name%"
RMDIR "%python_bin_dest_name%\Doc" /s /q
DEL "%python_bin_dest_name%\Lib\*.pyc" /s /q
DEL "%python_bin_dest_name%\w9xpopen.exe"
XCOPY /s /i /q "NoRedist\%python_arch_name%\Microsoft.VC90.CRT" "%python_bin_dest_name%"
XCOPY /q /y "NoRedist\TPS\PythonWinBin.tps" "%python_bin_dest_name%"
XCOPY /q /y "NoRedist\TPS\VisualStudio2008.tps" "%python_bin_dest_name%"
XCOPY /q /y "%WINDIR%\System32\python27.dll" "%python_bin_dest_name%"
XCOPY /q /y "Python.tps" "%python_bin_dest_name%\..\"
XCOPY /s /i /q "%python_bin_dest_name%\include" "%python_lib_dest_name%\include"
XCOPY /s /i /q "%python_bin_dest_name%\libs" "%python_lib_dest_name%\libs"
RMDIR "%python_bin_dest_name%\include" /s /q
RMDIR "%python_bin_dest_name%\libs" /s /q
:End
PAUSE