monero-gui/build.sh

32 lines
313 B
Bash
Raw Normal View History

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