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.
13 lines
382 B
13 lines
382 B
#!/bin/sh |
|
# Clean build directories |
|
rm -rf mac |
|
mkdir -p mac |
|
# Change to build directory and compile application |
|
cd .. |
|
make -j4 |
|
# Copy and build the application bundle |
|
cd deploy |
|
cp -r ../bin/mac/qgroundcontrol.app mac/. |
|
cp -r ../audio mac/qgroundcontrol.app/Contents/MacOs/. |
|
macdeployqt qgroundcontrol.app --bundle |
|
echo -e '\n QGroundControl .DMG file is now ready for publishing\n'
|
|
|