You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#rb jeff.newquist #jira UE-145057 #rnx #preflight n/a [CL 19785265 by will damon in ue5-main branch]
23 lines
578 B
Bash
Executable File
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.
|