From 8d3a71cd9d0b83b7de71fca0e7f91dea1d7bf566 Mon Sep 17 00:00:00 2001 From: Ant Date: Wed, 8 Oct 2014 20:41:45 +0100 Subject: Only prepare the pre-requisites for the current SDKROOT --- scripts/prepare.sh | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) (limited to 'scripts') diff --git a/scripts/prepare.sh b/scripts/prepare.sh index 9b76ec12..6ba0c188 100755 --- a/scripts/prepare.sh +++ b/scripts/prepare.sh @@ -1,4 +1,15 @@ #!/bin/sh -./prepare-mac.sh -./prepare-ios.sh +# If this script is run outside of Xcode, prepare both platforms by default +if [ -z "$SDKROOT" ]; then + SDKROOT="MacOSX iPhone" +fi + +if echo "$SDKROOT" | grep -q "MacOSX"; then + echo "Preparing Mac" + ./prepare-mac.sh +fi +if echo "$SDKROOT" | grep -q "iPhone"; then + echo "Preparing iOS" + ./prepare-ios.sh +fi -- cgit v1.2.3