Browse Source

Build script and disable tr stuff for now

pull/56/head
Jonathan "Duke" Leto 5 years ago
parent
commit
f340f4b540
  1. 1
      application.qrc
  2. 16
      build.sh
  3. 1
      silentdragon.pro

1
application.qrc

@ -21,6 +21,5 @@
<file>res/zec_qt_wallet_zh.qm</file>
<file>res/zec_qt_wallet_ru.qm</file>
<file>res/zec_qt_wallet_uk.qm</file>
<file>res/zec_qt_wallet_tr.qm</file>
</qresource>
</RCC>

16
build.sh

@ -1,8 +1,18 @@
#!/bin/bash
# Copyright 2019 The Hush Developers
JOBS=$(nproc)
UNAME=$(uname)
if [ "$UNAME" == "Linux" ] ; then
JOBS=$(nproc)
elif [ "$UNAME" == "FreeBSD" ] ; then
JOBS=$(nproc)
elif [ "$UNAME" == "Darwin" ] ; then
JOBS=$(sysctl -n hw.ncpu)
else
JOBS=1
fi
qmake silentdragon.pro CONFIG+=debug
echo "Compiling with $JOBS threads..."
make -j$JOBS
qmake silentdragon.pro CONFIG+=debug; make -j$JOBS

1
silentdragon.pro

@ -118,7 +118,6 @@ TRANSLATIONS = res/zec_qt_wallet_es.ts \
res/zec_qt_wallet_it.ts \
res/zec_qt_wallet_zh.ts \
res/zec_qt_wallet_ru.ts \
res/zec_qt_wallet_tr.ts \
res/zec_qt_wallet_uk.ts
include(singleapplication/singleapplication.pri)

Loading…
Cancel
Save