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

17 lines
529 B
Bash

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