Advertisement
Guest User

Untitled

a guest
Oct 26th, 2016
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. # Set bash script to exit immediately if any commands fail.
  2. set -e
  3.  
  4. #Universal Folder
  5. UNIVERSAL_OUTPUTFOLDER=${BUILD_DIR}/${CONFIGURATION}-universal
  6.  
  7. # Build the framework for device (using all needed architectures).
  8. xcodebuild -target ${TARGET_NAME} -configuration ${CONFIGURATION} only_active_arch=no BUILD_DIR="${BUILD_DIR}" BUILD_ROOT="${BUILD_ROOT}" -sdk iphoneos
  9.  
  10. # Build the framework for simulator (using all needed architectures).
  11. xcodebuild -target ${TARGET_NAME} -configuration ${CONFIGURATION} -sdk iphonesimulator -arch i386 BUILD_DIR="${BUILD_DIR}" BUILD_ROOT="${BUILD_ROOT}"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement