aboutsummaryrefslogtreecommitdiffhomepage
path: root/scripts/prepare.sh
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/prepare.sh')
-rwxr-xr-xscripts/prepare.sh15
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