diff options
author | Adam Ierymenko <adam.ierymenko@gmail.com> | 2013-12-11 15:23:55 -0800 |
---|---|---|
committer | Adam Ierymenko <adam.ierymenko@gmail.com> | 2013-12-11 15:23:55 -0800 |
commit | 7eac53a178be2c1093bb9b34337d985583892567 (patch) | |
tree | 289b83c24cbd7c13e7b763c5c2a325575d87542f /ZeroTierUI | |
parent | ec4ffc0c2c269660c3e4a3ab2315d098e82bc676 (diff) | |
download | infinitytier-7eac53a178be2c1093bb9b34337d985583892567.tar.gz infinitytier-7eac53a178be2c1093bb9b34337d985583892567.zip |
Installer work...
Diffstat (limited to 'ZeroTierUI')
-rwxr-xr-x | ZeroTierUI/bundle_frameworks_with_mac_app.sh | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/ZeroTierUI/bundle_frameworks_with_mac_app.sh b/ZeroTierUI/bundle_frameworks_with_mac_app.sh deleted file mode 100755 index 2a6db621..00000000 --- a/ZeroTierUI/bundle_frameworks_with_mac_app.sh +++ /dev/null @@ -1,24 +0,0 @@ -#!/bin/bash - -qt_libs=/Applications/Qt5.1.1/5.1.1/clang_64/lib - -if [ ! -d "ZeroTier One.app" ]; then - echo "Build ZeroTier One.app first." - exit 1 -fi -if [ ! -d "$qt_libs" ]; then - echo "Edit bundle_frameworks_with_mac_app.sh and set qt_libs correctly first." - exit 1 -fi - -cd "ZeroTier One.app/Contents" - -rm -rf Frameworks -mkdir Frameworks -cd Frameworks -mkdir QtGui.framework -cp -v $qt_libs/QtGui.framework/QtGui QtGui.framework -mkdir QtWidgets.framework -cp -v $qt_libs/QtWidgets.framework/QtWidgets QtWidgets.framework -mkdir QtCore.framework -cp -v $qt_libs/QtCore.framework/QtCore QtCore.framework |