You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
25 lines
529 B
Batchfile
Executable File
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
|