monero-gui/build.sh

79 lines
1.7 KiB
Bash
Raw Normal View History

#!/bin/bash
2016-10-13 12:41:51 +00:00
BUILD_TYPE=$1
# default build type
2016-10-13 12:41:51 +00:00
if [ -z $BUILD_TYPE ]; then
BUILD_TYPE=release
fi
if [ "$BUILD_TYPE" == "release" ]; then
echo "Building release"
CONFIG="CONFIG+=release";
BIN_PATH=release/bin
elif [ "$BUILD_TYPE" == "release-static" ]; then
echo "Building release-static"
CONFIG="CONFIG+=release static";
BIN_PATH=release/bin
elif [ "$BUILD_TYPE" == "debug" ]; then
echo "Building debug"
CONFIG="CONFIG+=debug"
BIN_PATH=debug/bin
else
echo "Valid build types are release, release-static and debug"
exit 1;
2016-10-13 12:41:51 +00:00
fi
source ./utils.sh
pushd $(pwd)
ROOT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
MONERO_DIR=monero
2016-12-09 08:42:12 +00:00
MONEROD_EXEC=monerod
2016-12-09 08:42:12 +00:00
# Build libwallet if monero folder doesnt exist
if [ ! -d $MONERO_DIR ]; then
2016-10-13 12:41:51 +00:00
$SHELL get_libwallet_api.sh $BUILD_TYPE
2016-07-27 19:32:33 +00:00
fi
2016-12-15 23:47:53 +00:00
# build zxcvbn
make -C src/zxcvbn-c
if [ ! -d build ]; then mkdir build; fi
2016-08-03 12:59:42 +00:00
2016-10-13 12:41:51 +00:00
2016-12-09 08:42:12 +00:00
# Platform indepenent settings
platform=$(get_platform)
2016-12-15 17:01:06 +00:00
if [ "$platform" == "linux32" ] || [ "$platform" == "linux64" ]; then
distro=$(lsb_release -is)
if [ "$distro" == "Ubuntu" ]; then
CONFIG="$CONFIG libunwind_off"
fi
fi
2016-12-09 08:42:12 +00:00
if [ "$platform" == "darwin" ]; then
BIN_PATH=$BIN_PATH/monero-wallet-gui.app/Contents/MacOS/
2016-12-09 08:42:12 +00:00
elif [ "$platform" == "mingw64" ] || [ "$platform" == "mingw32" ]; then
MONEROD_EXEC=monerod.exe
fi
# force version update
get_tag
echo "var GUI_VERSION = \"$VERSIONTAG\"" > version.js
pushd "$MONERO_DIR"
get_tag
popd
echo "var GUI_MONERO_VERSION = \"$VERSIONTAG\"" >> version.js
cd build
qmake ../monero-wallet-gui.pro "$CONFIG"
2016-07-27 19:32:33 +00:00
make
2016-12-09 08:42:12 +00:00
# Copy monerod to bin folder
if [ "$platform" != "mingw32" ]; then
2016-12-09 08:42:12 +00:00
cp ../$MONERO_DIR/bin/$MONEROD_EXEC $BIN_PATH
fi
2016-12-09 08:42:12 +00:00
2016-10-19 12:42:26 +00:00
# make deploy
popd