diff options
author | Nadia Holmquist Pedersen <nadia@nhp.sh> | 2021-04-21 23:50:32 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-21 23:50:32 +0200 |
commit | 796ef958629ec71ad7d0c30c15c4e38b0bba7149 (patch) | |
tree | 1efe2d8d89d72aeed3f8b3012fea93a7244c205b /msys-dist.sh | |
parent | 06e2193c04083bc6395bb420c56d9e7f2c3b9863 (diff) |
Improve macOS bundling (#1067)
* Improve macOS bundling
* Bundle libs for macOS CI
* Add MACOS_BUILD_DMG CMake option and make the CI upload the DMG so we don't lose executable permissions.
* Manually copy plugins if macdeployqt doesn't
* Ad-hoc codesign the app
Diffstat (limited to 'msys-dist.sh')
-rwxr-xr-x | msys-dist.sh | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/msys-dist.sh b/msys-dist.sh deleted file mode 100755 index d95a6d3..0000000 --- a/msys-dist.sh +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/bash - -if [[ ! -x melonDS.exe ]]; then - echo "Run this script from the directory you built melonDS." - exit 1 -fi - -mkdir -p dist - -for lib in $(ldd melonDS.exe | grep mingw | sed "s/.*=> //" | sed "s/(.*)//"); do - cp "${lib}" dist -done - -cp melonDS.exe dist -windeployqt dist |