monero-gui/build.sh

32 lines
324 B
Bash
Raw Normal View History

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