-
Notifications
You must be signed in to change notification settings - Fork 44
/
makeMacRelease.sh
executable file
·36 lines (23 loc) · 1.61 KB
/
makeMacRelease.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#!/bin/sh
#
# @file makeMacRelease.sh
# @author Magnus Sethson <[email protected]>
# @date 2015-02-27
#
# @brief Script for building, configuring, compiling and adjusting HopsanGUI for Mac OS X
#
#
rm -fr bin/*
# Building dependencies
cd dependencies
. setupQwt.sh --force
. setupFMILibrary.sh --force
cd ..
# Building for RELEASE
. ./packaging/mac-app/build.sh --release
echo RELEASE built
# Building for DEBUG
. ./packaging/mac-app/build.sh --debug
echo DEBUG built
du -sh ./bin/HopsanGUI.app
du -sh ./bin/HopsanGUI_d.app