Skip to content

Commit

Permalink
Fix QtXml
Browse files Browse the repository at this point in the history
  • Loading branch information
tresf committed Jun 21, 2016
1 parent c088488 commit 47b3378
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion cmake/apple/install_apple.sh.in
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,12 @@ _executables="${_executables} -executable=$APP/Contents/lib/lmms/libZynAddSubFxC
macdeployqt "$APP" $_executables

# Fix known problems with macdeployqt
python "@CMAKE_BINARY_DIR@/macdeployqtfix.py" -q -nl $APP/Contents/MacOS/@PROJECT_NAME@ $(qmake -query QT_INSTALL_PREFIX)/
python "@CMAKE_BINARY_DIR@/macdeployqtfix.py" -q -nl "$APP/Contents/MacOS/@PROJECT_NAME@" "$(qmake -query QT_INSTALL_PREFIX)/"

# Fix QtXml
if [ -e "$APP/Contents/Frameworks/QtXml.framework/QtXml" ]; then
python "@CMAKE_BINARY_DIR@/macdeployqtfix.py" -q -nl "$APP/Contents/Frameworks/QtXml.framework/QtXml" "$(qmake -query QT_INSTALL_PREFIX)/"
fi

# OS X Specific Artwork
mkdir -p "$APP/Contents/Resources"
Expand Down

0 comments on commit 47b3378

Please sign in to comment.