mirror of
https://github.com/monero-project/monero-gui.git
synced 2024-11-17 08:17:59 +00:00
31 lines
313 B
Bash
Executable file
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
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|