-
Notifications
You must be signed in to change notification settings - Fork 20
/
makeEXE.sh
executable file
·62 lines (48 loc) · 1.1 KB
/
makeEXE.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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
#!/bin/bash
release=${1:-"NO_RELEASE"}
#
# create build dir if does not exist, cd to build, conan install and then qmake
#
mkdir -p build
cd build
# conan install
conan install .. --build missing
cmd_status=$?
if [[ $cmd_status != 0 ]]
then
echo "WE-UQ: conan install failed";
exit $cmd_status;
fi
# qmake
if [ -n "$release" ] && [ "$release" = "release" ]; then
echo "******** RELEASE BUILD *************"
qmake QMAKE_CXXFLAGS+=-D_SC_RELEASE ../WE-UQ.pro
else
echo "********* NON RELEASE BUILD ********"
qmake ../WE-UQ.pro
fi
cmd_status=$?
if [[ $cmd_status != 0 ]]
then
echo "WE-UQ: qmake failed";
exit $cmd_status;
fi
# make
touch ../WorkflowAppWE.cpp
make -j 4
cmd_status=$?;
if [[ $cmd_status != 0 ]]
then
echo "WE-UQ: make failed";
exit $cmd_status;
fi
if [[ "$OSTYPE" == "darwin"* ]]
then
mkdir ./WE_UQ.app/contents/MacOS/Examples
cp -r ../Examples/we* ./WE_UQ.app/contents/MacOS/Examples
rm -fr ./WE_UQ.app/contents/MacOS/Examples/.archive
rm -fr ./WE_UQ.app/contents/MacOS/Examples/.aurore
else
#
echo "No Examples Copied"
fi