File indexing completed on 2025-03-16 12:43:27
0001 #!/bin/sh 0002 # Tim Sutton 2007 0003 # Copy supportibng libraries (except Qt) to Marble bundle 0004 # and make search paths for them relative to bundle 0005 # 0006 # Change prefix if you built to a different install dest 0007 # 0008 PREFIX=/Applications/Marble.app/ 0009 #set -x 0010 install_name_tool -change $HOME/dev/cpp/marble/build/src/lib/libmarblewidget.5.dylib \ 0011 @executable_path/lib/libmarblewidget.5.dylib \ 0012 ${PREFIX}/Contents/MacOS/marble 0013 0014 # Remove any debug etc symbols - comment this line out if you are debugging! 0015 strip -x ${PREFIX}/Contents/MacOS/marble