Files
UnrealEngineUWP/Engine/Source/ThirdParty/Intel/ISPCTexComp/BuildForMac.command
will damon 311bf4616b ISPCTexComp changes required to enable building ISPCTexComp as a universal binary for macOS
#rb jeff.newquist
#jira UE-145057
#rnx
#preflight n/a

[CL 19785265 by will damon in ue5-main branch]
2022-04-18 10:39:40 -04:00

23 lines
578 B
Bash
Executable File

#!/bin/bash
set -e
pushd . > /dev/null
UE_THIRD_PARTY_LOCATION=`cd $(pwd)/..; pwd`
UE_MODULE_LOCATION=`pwd`
SOURCE_LOCATION=$UE_MODULE_LOCATION
INSTALL_LOCATION="$UE_THIRD_PARTY_LOCATION/../../../Binaries/ThirdParty/Intel/ISPCTexComp/Mac64-Release"
echo Building ISPCTexComp for Release...
xcodebuild clean build -scheme=ispc_texcomp -project $SOURCE_LOCATION/ispc_texcomp.xcodeproj -configuration Release -xcconfig "XcodeConfig"
echo Installing ISPCTexComp...
cp "$SOURCE_LOCATION/build/libispc_texcomp.dylib" "$INSTALL_LOCATION/libispc_texcomp.dylib"
popd
echo Done.