aboutsummaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorsD <stoned@derpymail.org>2020-04-18 15:07:14 +0200
committersD <stoned@derpymail.org>2020-04-18 15:07:14 +0200
commitf4f441c24c69a28de092d2684e7c6cdff6a3509c (patch)
treed7a269e04f0d81e1d569a91dc95001e7b4d97aae /scripts
parent1883d4c269132fef044509bd626633c8261e8345 (diff)
this and post_build do the same thing
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/release_macos.sh22
1 files changed, 0 insertions, 22 deletions
diff --git a/scripts/release_macos.sh b/scripts/release_macos.sh
deleted file mode 100755
index 50acb408..00000000
--- a/scripts/release_macos.sh
+++ /dev/null
@@ -1,22 +0,0 @@
-#!/bin/sh
-
-# This script prepares the compiled bundle for shipping as a standalone release
-# Assumes the Qt bin folder is in PATH
-# Should be used on a "Release" build from QT creator
-# Note that this DOES NOT add the base/ folder
-
-# Exit on errors and unset variables
-set -eu
-
-ROOT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )/"
-
-cd ${ROOT_DIR}
-
-# This thing basically does all the work
-macdeployqt ../bin/Attorney_Online.app
-
-# Need to add the dependencies
-cp ../lib/* ../bin/Attorney_Online.app/Contents/Frameworks
-
-# libbass has a funny path for some reason, just use rpath
-install_name_tool -change @loader_path/libbass.dylib @rpath/libbass.dylib ../bin/Attorney_Online.app/Contents/MacOS/Attorney_Online