forked from Hopsan/hopsan
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmakeMacRelease.sh
executable file
·38 lines (24 loc) · 1.74 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
37
#!/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
#
#$Id$
#
rm -fr ../trunk/bin/*
# Building Dependencies
cd Dependencies
. setupQwt.sh --force
. setupFMILibrary.sh --force
cd ..
# Building for RELEASE
. ./buildMacApp/build.sh --release
echo RELEASE built
# Building for DEBUG
. ./buildMacApp/build.sh --debug
echo DEBUG built
du -sh ./bin/HopsanGUI.app
du -sh ./bin/HopsanGUI_d.app