monero-gui/build.sh

56 lines
1.1 KiB
Bash
Raw Normal View History

#!/bin/bash
2016-10-13 14:41:51 +02:00
BUILD_TYPE=$1
if [ -z $BUILD_TYPE ]; then
BUILD_TYPE=Release
fi
source ./utils.sh
pushd $(pwd)
ROOT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
MONERO_DIR=monero
2016-12-09 09:42:12 +01:00
MONEROD_EXEC=monerod
2016-12-09 09:42:12 +01:00
# Build libwallet if monero folder doesnt exist
if [ ! -d $MONERO_DIR ]; then
2016-10-13 14:41:51 +02:00
$SHELL get_libwallet_api.sh $BUILD_TYPE
2016-07-27 21:32:33 +02:00
fi
if [ ! -d build ]; then mkdir build; fi
2016-08-03 14:59:42 +02:00
2016-10-19 14:42:26 +02:00
if [ "$BUILD_TYPE" == "Release" ]; then
2016-10-13 14:41:51 +02:00
CONFIG="CONFIG+=release";
2016-12-09 09:42:12 +01:00
BIN_PATH=release/bin
2016-10-13 14:41:51 +02:00
else
CONFIG="CONFIG+=debug"
2016-12-09 09:42:12 +01:00
BIN_PATH=debug/bin
2016-10-13 14:41:51 +02:00
fi
2016-12-09 09:42:12 +01:00
# Platform indepenent settings
platform=$(get_platform)
if [ "$platform" == "linux" ]; then
distro=$(lsb_release -is)
if [ "$distro" == "Ubuntu" ]; then
CONFIG="$CONFIG libunwind_off"
fi
fi
2016-12-09 09:42:12 +01:00
if [ "$platform" == "darwin" ]; then
BIN_PATH=$BIN_PATH/monero-core.app/Contents/MacOS/
elif [ "$platform" == "mingw64" ] || [ "$platform" == "mingw32" ]; then
MONEROD_EXEC=monerod.exe
fi
cd build
qmake ../monero-core.pro "$CONFIG"
2016-07-27 21:32:33 +02:00
make
2016-12-09 09:42:12 +01:00
# Copy monerod to bin folder
cp ../$MONERO_DIR/bin/$MONEROD_EXEC $BIN_PATH
2016-10-19 14:42:26 +02:00
# make deploy
popd