Files
UnrealEngineUWP/Engine/Source/ThirdParty/hlslcc/UE_BuildThirdPartyLib.bat
Chris Gagnon 41830d88e7 Renaming UE4 build scripts, and removed some really dated documentation.
#rb Josh.Adams

[CL 15068236 by Chris Gagnon in ue5-main branch]
2021-01-13 12:39:56 -04:00

25 lines
529 B
Batchfile
Executable File

@echo off
REM hlslcc
pushd hlslcc\projects
p4 edit %THIRD_PARTY_CHANGELIST% ..\lib\...
REM vs2017 x64
pushd vs2017
REM FYI Files are still generated into libs/2015...
msbuild hlslcc.sln /target:Clean,hlslcc_lib /p:Platform=x64;Configuration="Debug"
msbuild hlslcc.sln /target:Clean,hlslcc_lib /p:Platform=x64;Configuration="Release"
popd
REM Linux (only if LINUX_ROOT is defined)
set CheckLINUX_ROOT=%LINUX_ROOT%
if "%CheckLINUX_ROOT%"=="" goto SkipLinux
pushd Linux
call CrossCompile.bat
popd
:SkipLinux
popd