forked from NHERI-SimCenter/HydroUQ
-
Notifications
You must be signed in to change notification settings - Fork 0
/
makeEXE.sh
executable file
·62 lines (49 loc) · 1.46 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
rm -fr Hydro_UQ.app
#
# Use c++17 standard so we have if constexpr, etc.
# TODO: Make sure there aren't old 'make' and conan files laying around
#
# conan install
conan install .. --build missing
cmd_status=$?
if [[ $cmd_status != 0 ]]; then echo "Hydro-UQ: conan install failed"; exit $cmd_status; fi
# qmake
if [ -n "$release" ] && [ "$release" = "release" ]; then
echo "******** RELEASE BUILD *************"
qmake QMAKE_CXXFLAGS+=-D_SC_RELEASE ../Hydro-UQ.pro
if [[ $cmd_status != 0 ]]; then echo "Hydro-UQ: qmake failed"; exit $cmd_status; fi
else
echo "********* NON RELEASE BUILD ********"
qmake ../Hydro-UQ.pro
if [[ $cmd_status != 0 ]]; then echo "Hydro-UQ: qmake failed"; exit $cmd_status; fi
fi
#
# make
#
touch ../WorkflowAppHydroUQ.cpp
make -j 4
cmd_status=$?;
if [[ $cmd_status != 0 ]]
then
echo "Hydro-UQ: make failed";
exit $cmd_status;
fi
if [[ "$OSTYPE" == "darwin"* ]]
then
cp -r ../Examples ./Hydro_UQ.app/contents/MacOS
rm -fr ./Hydro_UQ.app/contents/MacOS/Examples/.archive
rm -fr ./Hydro_UQ.app/contents/MacOS/Examples/.aurore
rm -fr ./Hydro_UQ.app/contents/MacOS/Examples/.conf
rm -fr ./Hydro_UQ.app/contents/MacOS/Examples/Makefile
rm -fr ./Hydro_UQ.app/contents/MacOS/Examples/README.md
else
#
echo "No Examples Copied"
fi