monero-gui/build.sh

32 lines
304 B
Bash
Raw Normal View History

#!/bin/bash
pushd $(pwd)
ROOT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
MONERO_DIR=monero
if [ ! -d $MONERO_DIR ]; then
2016-07-27 22:32:33 +03:00
$SHELL get_libwallet_api.sh
fi
if [ ! -d build ]; then mkdir build; fi
cd build
2016-08-03 15:59:42 +03:00
2016-07-27 22:32:33 +03:00
qmake ../monero-core.pro "CONFIG+=release"
make
make deploy
popd