Files
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05:00

17 lines
529 B
Bash
Executable File

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