Skip to content

Commit

Permalink
Refs #4333. Fix bundle library paths for new Python libraries.
Browse files Browse the repository at this point in the history
  • Loading branch information
martyngigg committed Jan 6, 2012
1 parent 9b2378e commit 347320d
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions Code/Mantid/MantidPlot/FixBundle.cmake.in
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,10 @@ set ( bundle ${CMAKE_INSTALL_PREFIX}/MantidPlot.app )
file ( GLOB pyqt_libs ${bundle}/Contents/MacOS/PyQt4/*.so )
file ( GLOB_RECURSE qtplugins ${bundle}/Contents/Frameworks/plugins/*.dylib )
file ( GLOB_RECURSE mtdqtplugins ${bundle}/plugins/*.dylib )
file ( GLOB RECURSE pythonlibs ${bundle}/Contents/MacOS/mantid/*.so )
set ( other_libs ${bundle}/Contents/MacOS/libMantidPythonAPI.so
${bundle}/Contents/MacOS/mantidqtpython.so
${pyqt_libs} ${qtplugins} ${mtdqtplugins}
${bundle}/Contents/MacOS/mantidqtpython.so
${pythonlibs} ${pyqt_libs} ${qtplugins} ${mtdqtplugins}
)

set ( dirs "@CMAKE_LIBRARY_OUTPUT_DIRECTORY@" "@CMAKE_LIBRARY_PATH@" /Library/Frameworks /opt/intel/lib )
Expand Down

0 comments on commit 347320d

Please sign in to comment.