Files
UnrealEngine/Engine/Source/ThirdParty/VHACD/BuildForMac.command
2025-05-18 13:04:45 +08:00

17 lines
537 B
Bash

#!/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.