monero-gui/build.sh
2016-08-03 15:59:42 +03:00

31 lines
313 B
Bash
Executable file

#!/bin/bash
pushd $(pwd)
ROOT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
BITMOMERO_DIR=bitmonero
if [ ! -d $BITMOMERO_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