aboutsummaryrefslogtreecommitdiff
path: root/msys-dist.sh
diff options
context:
space:
mode:
authorNadia Holmquist Pedersen <nadia@nhp.sh>2021-04-21 23:50:32 +0200
committerGitHub <noreply@github.com>2021-04-21 23:50:32 +0200
commit796ef958629ec71ad7d0c30c15c4e38b0bba7149 (patch)
tree1efe2d8d89d72aeed3f8b3012fea93a7244c205b /msys-dist.sh
parent06e2193c04083bc6395bb420c56d9e7f2c3b9863 (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-xmsys-dist.sh15
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