Skip to content

Commit

Permalink
macos build script fixed and cleaned
Browse files Browse the repository at this point in the history
  • Loading branch information
cryptozoidberg committed Dec 23, 2017
1 parent 4b644b8 commit 24ab8a3
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions utils/build_script_mac_osx.sh
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
set -x #echo on

export PROJECT_ROOT="/Users/roky/projects/boolberry"
export PROJECT_ROOT="/Users/roky/projects/boolberry/repo"
export QT_PATH="/Users/roky/Qt5.5.0/5.5"
export LOCAL_BOOST_LIBS_PATH="/Users/roky/projects/boolberry/deploy/boost_libs"



cd "$PROJECT_ROOT"
if [ $? -ne 0 ]; then
echo "Failed to cd boolberry"
Expand Down Expand Up @@ -32,6 +34,11 @@ if [ $? -ne 0 ]; then
exit $?
fi

make -j connectivity_tool
if [ $? -ne 0 ]; then
echo "Failed to make connectivity_tool"
exit $?
fi

cd src/
if [ $? -ne 0 ]; then
Expand Down Expand Up @@ -82,7 +89,7 @@ if [ $? -ne 0 ]; then
exit 1
fi

cp ../../../../Applications package_folder
ln -s /Applications package_folder/Applications
if [ $? -ne 0 ]; then
echo "Failed to copy applications link"
exit 1
Expand Down

0 comments on commit 24ab8a3

Please sign in to comment.