Files
monero-gui/build.sh
2016-07-25 16:24:07 +03:00

29 lines
269 B
Bash
Executable File

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