From b8116535fcd2aeaf6ec28f0339b1fadae96fa711 Mon Sep 17 00:00:00 2001 From: bparker06 Date: Sat, 8 Sep 2018 11:49:44 -0400 Subject: [PATCH] osx: Add option to build Qt on Metal build --- libretro-buildbot-recipe.sh | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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