monero-gui/build.sh

41 lines
666 B
Bash
Raw Normal View History

#!/bin/bash
2016-10-13 12:41:51 +00: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
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
if [ ! -d build ]; then mkdir build; fi
2016-08-03 12:59:42 +00:00
2016-10-19 12:42:26 +00:00
if [ "$BUILD_TYPE" == "Release" ]; then
2016-10-13 12:41:51 +00:00
CONFIG="CONFIG+=release";
else
CONFIG="CONFIG+=debug"
fi
platform=$(get_platform)
if [ "$platform" == "linux" ]; then
distro=$(lsb_release -is)
if [ "$distro" == "Ubuntu" ]; then
CONFIG="$CONFIG libunwind_off"
fi
fi
cd build
qmake ../monero-core.pro "$CONFIG"
2016-07-27 19:32:33 +00:00
make
2016-10-19 12:42:26 +00:00
# make deploy
popd