/core/externals/update-engine/externals/gdata-objectivec-client/Examples/SpreadsheetTableSample/buildCopyScript

http://macfuse.googlecode.com/ · Shell · 14 lines · 4 code · 2 blank · 8 comment · 1 complexity · 7526efb05184becb6d36377f9733bf0b MD5 · raw file

  1. #!/bin/sh -x
  2. #
  3. # This script tries to move the built GData.framework
  4. # into a place the example application's Copy Frameworks phase
  5. # will find it, regardless of whether projects are set to share
  6. # a build location or use the default build location
  7. # if the framework exists in the GData project's build directory,
  8. # copy it to this project's build directory
  9. if [ -d "$SRCROOT/../../Source/build/$CONFIGURATION/GData.framework" ] ; then
  10. rm -rf "$BUILT_PRODUCTS_DIR/GData.framework"
  11. ditto -v "$SRCROOT/../../Source/build/$CONFIGURATION/GData.framework" "$BUILT_PRODUCTS_DIR/GData.framework"
  12. fi