Files
UnrealEngineUWP/Engine/Source/ThirdParty/VHACD/BuildForMac.command
will damon ecfa2029c3 Rebuild VHACD libraries for macOS as Universal binaries
- on macOS Catalina 10.15.7
- with Xcode 12.4
- as a Universal binary (Intel/Apple SIlicon)

+ Add BuildForMac.command
+ Add XcodeConfig

#rb self
#jira UE-145042
#rnx
#preflight n/a

[CL 19386979 by will damon in ue5-main branch]
2022-03-15 11:48:00 -04:00

17 lines
537 B
Bash
Executable File

#!/bin/bash
set -e
UE_MODULE_LOCATION=`pwd`
SOURCE_LOCATION="$UE_MODULE_LOCATION/"
echo Building VHACD for Debug...
CONFIGURATION=Debug
xcodebuild clean build -scheme=VHACD -project $SOURCE_LOCATION"/build/Xcode/VHACD.xcodeproj" -configuration $CONFIGURATION -xcconfig "$SOURCE_LOCATION/XcodeConfig"
echo Building VHACD for Release...
CONFIGURATION=Release
xcodebuild clean build -scheme=VHACD -project $SOURCE_LOCATION"/build/Xcode/VHACD.xcodeproj" -configuration $CONFIGURATION -xcconfig "$SOURCE_LOCATION/XcodeConfig"
echo Done.