mirror of
https://github.com/monero-project/monero-gui.git
synced 2025-01-11 05:14:34 +00:00
3cc318eb5d
build: temporary disabled link with 'libunwind' due Ubuntu issues
31 lines
304 B
Bash
Executable file
31 lines
304 B
Bash
Executable file
#!/bin/bash
|
|
|
|
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
|
|
cd build
|
|
|
|
qmake ../monero-core.pro "CONFIG+=release"
|
|
make
|
|
make deploy
|
|
popd
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|