monero-gui/build.sh
Ilya Kitaev 3cc318eb5d build: adjusted with bitmonero->monero renamings;
build: temporary disabled link with 'libunwind' due Ubuntu issues
2016-09-19 16:45:34 +03:00

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