mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 02:30:44 +00:00
Update the create_dmg script to run macdeployqt every time.
We need it to strip the binary before creating the dmg.
This commit is contained in:
parent
b5d5be6475
commit
407827e5f9
@ -22,12 +22,6 @@ if [[ ${APP} != "" ]]; then
|
||||
exit 1
|
||||
fi
|
||||
|
||||
# Create a deployable application bundle (if it hasn't been already been done).
|
||||
if [[ ! -d "${APP}/Contents/Frameworks/QtCore.framework" ]]; then
|
||||
echo "${QT_BIN}"/macdeployqt "${APP}"
|
||||
"${QT_BIN}"/macdeployqt "${APP}" || exit
|
||||
fi
|
||||
|
||||
# Get the version from the application bundle.
|
||||
VERSION=`/usr/libexec/PlistBuddy -c "Print CFBundleGetInfoString" ${APP}/Contents/Info.plist`
|
||||
echo ${APP} is version ${VERSION}
|
||||
@ -38,7 +32,16 @@ if [[ ${APP} != "" ]]; then
|
||||
if [[ ${GIT_REVISION} != "" ]]; then
|
||||
VERSION=${VERSION}-${GIT_REVISION}
|
||||
fi
|
||||
|
||||
# TODO: possibly add -no-strip to macdeployqt for prerelease versions
|
||||
fi
|
||||
|
||||
# Create a deployable application bundle (if it hasn't been already been done).
|
||||
# Edit: do it every time so that the application gets stripped, just suppress the spurious warnings.
|
||||
#if [[ ! -d "${APP}/Contents/Frameworks/QtCore.framework" ]]; then
|
||||
echo "${QT_BIN}"/macdeployqt "${APP}"
|
||||
"${QT_BIN}"/macdeployqt "${APP}" 2>/dev/null || exit
|
||||
#fi
|
||||
fi
|
||||
|
||||
mkdir "${STAGING_DIR}" || exit
|
||||
|
Loading…
Reference in New Issue
Block a user