Skip to content

Commit

Permalink
Setup mac deploy script
Browse files Browse the repository at this point in the history
  • Loading branch information
Billy Schoenberg committed Jul 26, 2018
1 parent d9af2ff commit 0eeb9b2
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ ipch/
*.suo
*.opensdf
*.pyc
installers/out/
installers/out/*
third_party/include/
third_party/include/*
third_party/mac/*
Expand Down
9 changes: 9 additions & 0 deletions installers/deploy_mac.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
#!/bin/sh

export QTDIR="$HOME/Qt5.11.0/5.11.0/clang_64"

mkdir -p "$PWD/out/Release"
rm -rf "$/out/Release/XMUtil.app"
cp -rf "$PWD/../DerivedData/XMUtil/Build/Products/Release/XMUtil.app" "$PWD/out/Release/XMUtil.app"

$QTDIR/bin/macdeployqt "$PWD/out/Release/XMUtil.app"

0 comments on commit 0eeb9b2

Please sign in to comment.