mirror of
https://github.com/monero-project/monero-gui.git
synced 2024-11-16 15:58:11 +00:00
af30cfdd6e
distros than Ubuntu
42 lines
520 B
Bash
Executable file
42 lines
520 B
Bash
Executable file
#!/bin/bash
|
|
|
|
source ./utils.sh
|
|
pushd $(pwd)
|
|
ROOT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
|
MONERO_DIR=monero
|
|
|
|
if [ ! -d $MONERO_DIR ]; then
|
|
$SHELL get_libwallet_api.sh
|
|
fi
|
|
|
|
if [ ! -d build ]; then mkdir build; fi
|
|
|
|
CONFIG="CONFIG+=release"
|
|
|
|
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"
|
|
make
|
|
make deploy
|
|
popd
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|