diff --git a/.gitignore b/.gitignore index f5ebc0d081ee086e2ef758ab8d0726f8cfd82f03..34a7ee7b706f048de564cc13faadd14d16c5c0b1 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,5 @@ SkywardHub.pro.user SkywardHub.pro.user.* .build -**/.DS_Store \ No newline at end of file +**/.DS_Store +Deploy/* \ No newline at end of file diff --git a/macdeploy.sh b/macdeploy.sh new file mode 100755 index 0000000000000000000000000000000000000000..70116ab9a77576a731fdee86501cfbf862211358 --- /dev/null +++ b/macdeploy.sh @@ -0,0 +1,8 @@ +BUILD_DIR=../build-SkywardHub-Desktop_Qt_5_15_2_clang_64bit-Release + +# macdeployqt script to bundle the app the all its dependedcies +~/Qt/5.15.2/clang_64/bin/macdeployqt $BUILD_DIR/SkywardHub.app + +# Move the bundle in a new forlder +mkdir -p ./Deploy +cp -r $BUILD_DIR/SkywardHub.app ./Deploy