diff options
author | Ant <anthony@dervishsoftware.com> | 2014-10-08 21:05:39 +0100 |
---|---|---|
committer | Ant <anthony@dervishsoftware.com> | 2014-10-08 21:05:39 +0100 |
commit | 1c66c4dafe7da14a59faf82aadabb1e6e01ac565 (patch) | |
tree | b03a4085655450fb074a716b006ac5c041f5d600 /scripts | |
parent | 0b5d682382b50088d0b54a6deefd845f404811e9 (diff) |
Only prepare the pre-requisites for the current SDKROOT
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/prepare.sh | 15 |
1 files changed, 13 insertions, 2 deletions
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 |