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