You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
#!/bin/sh
|
|
|
|
cp -r ../../qgroundcontrol-build-desktop/qgroundcontrol.app .
|
|
|
|
|
|
|
|
|
|
|
|
cp -r ../audio qgroundcontrol.app/Contents/MacOs/.
|
|
|
|
mkdir -p qgroundcontrol.app/Contents/Frameworks/
|
|
|
|
# SDL is not copied by Qt - for whatever reason
|
|
|
|
cp -r /Library/Frameworks/SDL.framework qgroundcontrol.app/Contents/Frameworks/.
|
|
|
|
echo -e '\n\nStarting to create disk image. This may take a while..\n'
|
|
|
|
macdeployqt qgroundcontrol.app -dmg
|
|
|
|
#rm -rf qgroundcontrol.app
|
|
|
|
echo -e '\n\n QGroundControl .DMG file is now ready for publishing\n'
|