diff scripts/osx/deploy_build.sh @ 367:8d45d892be88 default tip

*: instead of pugixml, use Qt XML features this means we have one extra Qt dependency though...
author Paper <paper@tflc.us>
date Sun, 17 Nov 2024 22:55:47 -0500
parents 22f9aacf6ac1
children
line wrap: on
line diff
--- a/scripts/osx/deploy_build.sh	Sun Nov 17 19:56:01 2024 -0500
+++ b/scripts/osx/deploy_build.sh	Sun Nov 17 22:55:47 2024 -0500
@@ -24,7 +24,7 @@
 
 macdeployqt "$BUNDLE_NAME.app" -no-strip
 if $FRAMEWORK_MODE; then
-	for i in QtCore QtGui QtWidgets; do
+	for i in QtCore QtGui QtWidgets QtXml; do
 		install_name_tool -id @executable_path/../Frameworks/$i.framework/Versions/5/$i $BUNDLE_NAME.app/Contents/Frameworks/$i.framework/Versions/5/$i
 		install_name_tool -change @rpath/$i.framework/Versions/5/$i @executable_path/../Frameworks/$i.framework/Versions/5/$i $BUNDLE_NAME.app/Contents/MacOS/minori
 	done