生成安装包
macdeployqt Test.app -dmg // 打包release版的app
查看依赖的动态库及其路径
otool -L Test.app/Contents/MacOS/Test
修改依赖的动态库的路径
install_name_tool -change "libtest.dylib" "@rpath/mylib/libtest.dylib" Test.app/Contents/MacOS/Test // 记得在Contents/Frameworks目录中创建一个mylib目录