aboutsummaryrefslogtreecommitdiff
path: root/build.sh
diff options
context:
space:
mode:
authorIlya Kitaev <mbg033@gmail.com>2016-07-27 22:32:33 +0300
committerIlya Kitaev <mbg033@gmail.com>2016-07-27 22:32:33 +0300
commit9cd73dfbbed6e200852ca9e1c1494ea3e5eae6c3 (patch)
treefa372d5e1e06afdea7bd7112065df9c69d294910 /build.sh
parent1b35a1ae4b01c05224fdc3b1acf70b7afdd6328c (diff)
downloadmonzero-gui-9cd73dfbbed6e200852ca9e1c1494ea3e5eae6c3.tar.gz
monzero-gui-9cd73dfbbed6e200852ca9e1c1494ea3e5eae6c3.tar.xz
monzero-gui-9cd73dfbbed6e200852ca9e1c1494ea3e5eae6c3.zip
Translations are separate qm files
Diffstat (limited to 'build.sh')
-rwxr-xr-xbuild.sh9
1 files changed, 6 insertions, 3 deletions
diff --git a/build.sh b/build.sh
index 5cfea74d..3c3260f5 100755
--- a/build.sh
+++ b/build.sh
@@ -2,14 +2,17 @@
pushd $(pwd)
ROOT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
+BITMOMERO_DIR=bitmonero
-#$SHELL get_libwallet_api.sh
+if [ ! -d $BITMOMERO_DIR ]; then
+ $SHELL get_libwallet_api.sh
+fi
if [ ! -d build ]; then mkdir build; fi
cd build
echo $(pwd)
-qmake ../monero-core.pro "CONFIG += release"
-make release
+qmake ../monero-core.pro "CONFIG+=release"
+make
make deploy
popd