diff --git a/libretro-buildbot-recipe.sh b/libretro-buildbot-recipe.sh index c13eeb9e..c7e3d269 100755 --- a/libretro-buildbot-recipe.sh +++ b/libretro-buildbot-recipe.sh @@ -820,7 +820,11 @@ if [ "${PLATFORM}" == "osx" ] && [ "${RA}" == "YES" ]; then cd pkg/apple if [ "${METAL}" == "1" ]; then - xcodebuild -project RetroArch_Metal.xcodeproj -target RetroArch -configuration Release | tee "$LOGFILE" + if [ "${METAL_QT}" == "1" ]; then + xcodebuild -project RetroArch_Metal.xcodeproj -target RetroArchQT -configuration Release | tee "$LOGFILE" + else + xcodebuild -project RetroArch_Metal.xcodeproj -target RetroArch -configuration Release | tee "$LOGFILE" + fi else xcodebuild -project RetroArch.xcodeproj -target RetroArch -configuration Release | tee "$LOGFILE" fi