mirror of
https://github.com/dashpay/dash.git
synced 2024-12-27 13:03:17 +01:00
8a1ec935a0
* scripted-diff: Replace #include "" with #include <> (ryanofsky) -BEGIN VERIFY SCRIPT- for f in \ src/*.cpp \ src/*.h \ src/bench/*.cpp \ src/bench/*.h \ src/compat/*.cpp \ src/compat/*.h \ src/consensus/*.cpp \ src/consensus/*.h \ src/crypto/*.cpp \ src/crypto/*.h \ src/crypto/ctaes/*.h \ src/policy/*.cpp \ src/policy/*.h \ src/primitives/*.cpp \ src/primitives/*.h \ src/qt/*.cpp \ src/qt/*.h \ src/qt/test/*.cpp \ src/qt/test/*.h \ src/rpc/*.cpp \ src/rpc/*.h \ src/script/*.cpp \ src/script/*.h \ src/support/*.cpp \ src/support/*.h \ src/support/allocators/*.h \ src/test/*.cpp \ src/test/*.h \ src/wallet/*.cpp \ src/wallet/*.h \ src/wallet/test/*.cpp \ src/wallet/test/*.h \ src/zmq/*.cpp \ src/zmq/*.h do base=${f%/*}/ relbase=${base#src/} sed -i "s:#include \"\(.*\)\"\(.*\):if test -e \$base'\\1'; then echo \"#include <\"\$relbase\"\\1>\\2\"; else echo \"#include <\\1>\\2\"; fi:e" $f done -END VERIFY SCRIPT- Signed-off-by: Pasta <pasta@dashboost.org> * scripted-diff: Replace #include "" with #include <> (Dash Specific) -BEGIN VERIFY SCRIPT- for f in \ src/bls/*.cpp \ src/bls/*.h \ src/evo/*.cpp \ src/evo/*.h \ src/governance/*.cpp \ src/governance/*.h \ src/llmq/*.cpp \ src/llmq/*.h \ src/masternode/*.cpp \ src/masternode/*.h \ src/privatesend/*.cpp \ src/privatesend/*.h do base=${f%/*}/ relbase=${base#src/} sed -i "s:#include \"\(.*\)\"\(.*\):if test -e \$base'\\1'; then echo \"#include <\"\$relbase\"\\1>\\2\"; else echo \"#include <\\1>\\2\"; fi:e" $f done -END VERIFY SCRIPT- Signed-off-by: Pasta <pasta@dashboost.org> * build: Remove -I for everything but project root Remove -I from build system for everything but the project root, and built-in dependencies. Signed-off-by: Pasta <pasta@dashboost.org> # Conflicts: # src/Makefile.test.include * qt: refactor: Use absolute include paths in .ui files * qt: refactor: Changes to make include paths absolute This makes all include paths in the GUI absolute. Many changes are involved as every single source file in src/qt/ assumes to be able to use relative includes. Signed-off-by: Pasta <pasta@dashboost.org> # Conflicts: # src/qt/dash.cpp # src/qt/optionsmodel.cpp # src/qt/test/rpcnestedtests.cpp * test: refactor: Use absolute include paths for test data files * Recommend #include<> syntax in developer notes * refactor: Include obj/build.h instead of build.h * END BACKPORT #11651 Remove trailing whitespace causing travis failure * fix backport 11651 Signed-off-by: Pasta <pasta@dashboost.org> * More of 11651 * fix blockchain.cpp Signed-off-by: pasta <pasta@dashboost.org> * Add missing "qt/" in includes * Add missing "test/" in includes * Fix trailing whitespaces Co-authored-by: Wladimir J. van der Laan <laanwj@gmail.com> Co-authored-by: Russell Yanofsky <russ@yanofsky.org> Co-authored-by: MeshCollider <dobsonsa68@gmail.com> Co-authored-by: UdjinM6 <UdjinM6@users.noreply.github.com>
430 lines
13 KiB
Makefile
430 lines
13 KiB
Makefile
# Copyright (c) 2013-2016 The Bitcoin Core developers
|
|
# Copyright (c) 2014-2018 The Dash Core developers
|
|
# Distributed under the MIT software license, see the accompanying
|
|
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
bin_PROGRAMS += qt/dash-qt
|
|
EXTRA_LIBRARIES += qt/libdashqt.a
|
|
|
|
# dash qt core #
|
|
QT_TS = \
|
|
qt/locale/dash_ar.ts \
|
|
qt/locale/dash_bg.ts \
|
|
qt/locale/dash_de.ts \
|
|
qt/locale/dash_en.ts \
|
|
qt/locale/dash_es.ts \
|
|
qt/locale/dash_fi.ts \
|
|
qt/locale/dash_fr.ts \
|
|
qt/locale/dash_it.ts \
|
|
qt/locale/dash_ja.ts \
|
|
qt/locale/dash_ko.ts \
|
|
qt/locale/dash_nl.ts \
|
|
qt/locale/dash_pl.ts \
|
|
qt/locale/dash_pt.ts \
|
|
qt/locale/dash_ro.ts \
|
|
qt/locale/dash_ru.ts \
|
|
qt/locale/dash_sk.ts \
|
|
qt/locale/dash_th.ts \
|
|
qt/locale/dash_tr.ts \
|
|
qt/locale/dash_vi.ts \
|
|
qt/locale/dash_zh_CN.ts \
|
|
qt/locale/dash_zh_TW.ts
|
|
|
|
QT_FORMS_UI = \
|
|
qt/forms/addressbookpage.ui \
|
|
qt/forms/askpassphrasedialog.ui \
|
|
qt/forms/coincontroldialog.ui \
|
|
qt/forms/editaddressdialog.ui \
|
|
qt/forms/helpmessagedialog.ui \
|
|
qt/forms/intro.ui \
|
|
qt/forms/modaloverlay.ui \
|
|
qt/forms/masternodelist.ui \
|
|
qt/forms/qrdialog.ui \
|
|
qt/forms/openuridialog.ui \
|
|
qt/forms/optionsdialog.ui \
|
|
qt/forms/overviewpage.ui \
|
|
qt/forms/receivecoinsdialog.ui \
|
|
qt/forms/receiverequestdialog.ui \
|
|
qt/forms/debugwindow.ui \
|
|
qt/forms/sendcoinsdialog.ui \
|
|
qt/forms/sendcoinsentry.ui \
|
|
qt/forms/signverifymessagedialog.ui \
|
|
qt/forms/transactiondescdialog.ui
|
|
|
|
QT_MOC_CPP = \
|
|
qt/moc_addressbookpage.cpp \
|
|
qt/moc_addresstablemodel.cpp \
|
|
qt/moc_askpassphrasedialog.cpp \
|
|
qt/moc_bantablemodel.cpp \
|
|
qt/moc_bitcoinaddressvalidator.cpp \
|
|
qt/moc_bitcoinamountfield.cpp \
|
|
qt/moc_bitcoingui.cpp \
|
|
qt/moc_bitcoinunits.cpp \
|
|
qt/moc_callback.cpp \
|
|
qt/moc_clientmodel.cpp \
|
|
qt/moc_coincontroldialog.cpp \
|
|
qt/moc_coincontroltreewidget.cpp \
|
|
qt/moc_csvmodelwriter.cpp \
|
|
qt/moc_editaddressdialog.cpp \
|
|
qt/moc_guiutil.cpp \
|
|
qt/moc_intro.cpp \
|
|
qt/moc_macdockiconhandler.cpp \
|
|
qt/moc_macnotificationhandler.cpp \
|
|
qt/moc_modaloverlay.cpp \
|
|
qt/moc_masternodelist.cpp \
|
|
qt/moc_notificator.cpp \
|
|
qt/moc_openuridialog.cpp \
|
|
qt/moc_optionsdialog.cpp \
|
|
qt/moc_optionsmodel.cpp \
|
|
qt/moc_overviewpage.cpp \
|
|
qt/moc_peertablemodel.cpp \
|
|
qt/moc_paymentserver.cpp \
|
|
qt/moc_qrdialog.cpp \
|
|
qt/moc_qvalidatedlineedit.cpp \
|
|
qt/moc_qvaluecombobox.cpp \
|
|
qt/moc_receivecoinsdialog.cpp \
|
|
qt/moc_receiverequestdialog.cpp \
|
|
qt/moc_recentrequeststablemodel.cpp \
|
|
qt/moc_rpcconsole.cpp \
|
|
qt/moc_sendcoinsdialog.cpp \
|
|
qt/moc_sendcoinsentry.cpp \
|
|
qt/moc_signverifymessagedialog.cpp \
|
|
qt/moc_splashscreen.cpp \
|
|
qt/moc_trafficgraphwidget.cpp \
|
|
qt/moc_transactiondesc.cpp \
|
|
qt/moc_transactiondescdialog.cpp \
|
|
qt/moc_transactionfilterproxy.cpp \
|
|
qt/moc_transactiontablemodel.cpp \
|
|
qt/moc_transactionview.cpp \
|
|
qt/moc_utilitydialog.cpp \
|
|
qt/moc_walletframe.cpp \
|
|
qt/moc_walletmodel.cpp \
|
|
qt/moc_walletview.cpp
|
|
|
|
BITCOIN_MM = \
|
|
qt/macdockiconhandler.mm \
|
|
qt/macnotificationhandler.mm \
|
|
qt/macos_appnap.mm
|
|
|
|
QT_MOC = \
|
|
qt/dash.moc \
|
|
qt/bitcoinamountfield.moc \
|
|
qt/callback.moc \
|
|
qt/intro.moc \
|
|
qt/overviewpage.moc \
|
|
qt/rpcconsole.moc
|
|
|
|
QT_QRC_CPP = qt/qrc_dash.cpp
|
|
QT_QRC = qt/dash.qrc
|
|
QT_QRC_LOCALE_CPP = qt/qrc_dash_locale.cpp
|
|
QT_QRC_LOCALE = qt/dash_locale.qrc
|
|
|
|
PROTOBUF_CC = qt/paymentrequest.pb.cc
|
|
PROTOBUF_H = qt/paymentrequest.pb.h
|
|
PROTOBUF_PROTO = qt/paymentrequest.proto
|
|
|
|
BITCOIN_QT_H = \
|
|
qt/addressbookpage.h \
|
|
qt/addresstablemodel.h \
|
|
qt/askpassphrasedialog.h \
|
|
qt/bantablemodel.h \
|
|
qt/bitcoinaddressvalidator.h \
|
|
qt/bitcoinamountfield.h \
|
|
qt/bitcoingui.h \
|
|
qt/bitcoinunits.h \
|
|
qt/callback.h \
|
|
qt/clientmodel.h \
|
|
qt/coincontroldialog.h \
|
|
qt/coincontroltreewidget.h \
|
|
qt/csvmodelwriter.h \
|
|
qt/editaddressdialog.h \
|
|
qt/guiconstants.h \
|
|
qt/guiutil.h \
|
|
qt/intro.h \
|
|
qt/macdockiconhandler.h \
|
|
qt/macnotificationhandler.h \
|
|
qt/macos_appnap.h \
|
|
qt/modaloverlay.h \
|
|
qt/masternodelist.h \
|
|
qt/networkstyle.h \
|
|
qt/notificator.h \
|
|
qt/openuridialog.h \
|
|
qt/optionsdialog.h \
|
|
qt/optionsmodel.h \
|
|
qt/overviewpage.h \
|
|
qt/paymentrequestplus.h \
|
|
qt/paymentserver.h \
|
|
qt/peertablemodel.h \
|
|
qt/platformstyle.h \
|
|
qt/qrdialog.h \
|
|
qt/qvalidatedlineedit.h \
|
|
qt/qvaluecombobox.h \
|
|
qt/receivecoinsdialog.h \
|
|
qt/receiverequestdialog.h \
|
|
qt/recentrequeststablemodel.h \
|
|
qt/rpcconsole.h \
|
|
qt/sendcoinsdialog.h \
|
|
qt/sendcoinsentry.h \
|
|
qt/signverifymessagedialog.h \
|
|
qt/splashscreen.h \
|
|
qt/trafficgraphdata.h \
|
|
qt/trafficgraphwidget.h \
|
|
qt/transactiondesc.h \
|
|
qt/transactiondescdialog.h \
|
|
qt/transactionfilterproxy.h \
|
|
qt/transactionrecord.h \
|
|
qt/transactiontablemodel.h \
|
|
qt/transactionview.h \
|
|
qt/utilitydialog.h \
|
|
qt/walletframe.h \
|
|
qt/walletmodel.h \
|
|
qt/walletmodeltransaction.h \
|
|
qt/walletview.h \
|
|
qt/winshutdownmonitor.h
|
|
|
|
RES_ICONS = \
|
|
qt/res/icons/bitcoin.ico \
|
|
qt/res/icons/bitcoin_testnet.ico \
|
|
qt/res/icons/bitcoin.png \
|
|
qt/res/icons/chevron.png \
|
|
qt/res/icons/warning.png \
|
|
qt/res/icons/add.png \
|
|
qt/res/icons/address-book.png \
|
|
qt/res/icons/browse.png \
|
|
qt/res/icons/clock1.png \
|
|
qt/res/icons/clock2.png \
|
|
qt/res/icons/clock3.png \
|
|
qt/res/icons/clock4.png \
|
|
qt/res/icons/clock5.png \
|
|
qt/res/icons/configure.png \
|
|
qt/res/icons/connect0_16.png \
|
|
qt/res/icons/connect1_16.png \
|
|
qt/res/icons/connect2_16.png \
|
|
qt/res/icons/connect3_16.png \
|
|
qt/res/icons/connect4_16.png \
|
|
qt/res/icons/console_remove.png \
|
|
qt/res/icons/debugwindow.png \
|
|
qt/res/icons/edit.png \
|
|
qt/res/icons/editcopy.png \
|
|
qt/res/icons/editpaste.png \
|
|
qt/res/icons/export.png \
|
|
qt/res/icons/eye.png \
|
|
qt/res/icons/eye_minus.png \
|
|
qt/res/icons/eye_plus.png \
|
|
qt/res/icons/filesave.png \
|
|
qt/res/icons/hd_disabled.png \
|
|
qt/res/icons/hd_enabled.png \
|
|
qt/res/icons/key.png \
|
|
qt/res/icons/lock_closed.png \
|
|
qt/res/icons/lock_open.png \
|
|
qt/res/icons/quit.png \
|
|
qt/res/icons/receive.png \
|
|
qt/res/icons/remove.png \
|
|
qt/res/icons/send.png \
|
|
qt/res/icons/synced.png \
|
|
qt/res/icons/transaction0.png \
|
|
qt/res/icons/transaction2.png \
|
|
qt/res/icons/transaction_conflicted.png \
|
|
qt/res/icons/tx_inout.png \
|
|
qt/res/icons/tx_input.png \
|
|
qt/res/icons/tx_output.png \
|
|
qt/res/icons/tx_mined.png \
|
|
qt/res/icons/about.png \
|
|
qt/res/icons/about_qt.png \
|
|
qt/res/icons/verify.png \
|
|
qt/res/icons/fontbigger.png \
|
|
qt/res/icons/fontsmaller.png \
|
|
qt/res/icons/transaction_abandoned.png \
|
|
qt/res/icons/network_disabled.png
|
|
|
|
BITCOIN_QT_BASE_CPP = \
|
|
qt/bantablemodel.cpp \
|
|
qt/bitcoinaddressvalidator.cpp \
|
|
qt/bitcoinamountfield.cpp \
|
|
qt/bitcoingui.cpp \
|
|
qt/bitcoinunits.cpp \
|
|
qt/clientmodel.cpp \
|
|
qt/csvmodelwriter.cpp \
|
|
qt/guiutil.cpp \
|
|
qt/intro.cpp \
|
|
qt/modaloverlay.cpp \
|
|
qt/networkstyle.cpp \
|
|
qt/notificator.cpp \
|
|
qt/optionsdialog.cpp \
|
|
qt/optionsmodel.cpp \
|
|
qt/peertablemodel.cpp \
|
|
qt/platformstyle.cpp \
|
|
qt/qvalidatedlineedit.cpp \
|
|
qt/qvaluecombobox.cpp \
|
|
qt/rpcconsole.cpp \
|
|
qt/splashscreen.cpp \
|
|
qt/trafficgraphdata.cpp \
|
|
qt/trafficgraphwidget.cpp \
|
|
qt/utilitydialog.cpp
|
|
|
|
BITCOIN_QT_WINDOWS_CPP = qt/winshutdownmonitor.cpp
|
|
|
|
BITCOIN_QT_WALLET_CPP = \
|
|
qt/addressbookpage.cpp \
|
|
qt/addresstablemodel.cpp \
|
|
qt/askpassphrasedialog.cpp \
|
|
qt/coincontroldialog.cpp \
|
|
qt/coincontroltreewidget.cpp \
|
|
qt/editaddressdialog.cpp \
|
|
qt/masternodelist.cpp \
|
|
qt/openuridialog.cpp \
|
|
qt/overviewpage.cpp \
|
|
qt/paymentrequestplus.cpp \
|
|
qt/paymentserver.cpp \
|
|
qt/qrdialog.cpp \
|
|
qt/receivecoinsdialog.cpp \
|
|
qt/receiverequestdialog.cpp \
|
|
qt/recentrequeststablemodel.cpp \
|
|
qt/sendcoinsdialog.cpp \
|
|
qt/sendcoinsentry.cpp \
|
|
qt/signverifymessagedialog.cpp \
|
|
qt/transactiondesc.cpp \
|
|
qt/transactiondescdialog.cpp \
|
|
qt/transactionfilterproxy.cpp \
|
|
qt/transactionrecord.cpp \
|
|
qt/transactiontablemodel.cpp \
|
|
qt/transactionview.cpp \
|
|
qt/walletframe.cpp \
|
|
qt/walletmodel.cpp \
|
|
qt/walletmodeltransaction.cpp \
|
|
qt/walletview.cpp
|
|
|
|
BITCOIN_QT_CPP = $(BITCOIN_QT_BASE_CPP)
|
|
if TARGET_WINDOWS
|
|
BITCOIN_QT_CPP += $(BITCOIN_QT_WINDOWS_CPP)
|
|
endif
|
|
if ENABLE_WALLET
|
|
BITCOIN_QT_CPP += $(BITCOIN_QT_WALLET_CPP)
|
|
endif
|
|
|
|
RES_IMAGES = \
|
|
qt/res/images/arrow_down.png \
|
|
qt/res/images/arrow_down_small.png \
|
|
qt/res/images/arrow_left_small.png \
|
|
qt/res/images/arrow_right_small.png \
|
|
qt/res/images/arrow_up_small.png \
|
|
qt/res/images/checked.png \
|
|
qt/res/images/dash_logo_horizontal.png \
|
|
qt/res/images/dash_logo_toolbar.png \
|
|
qt/res/images/qtreeview_selected.png \
|
|
qt/res/images/splash.png \
|
|
qt/res/images/unchecked.png
|
|
|
|
RES_CSS = \
|
|
qt/res/css/dark.css \
|
|
qt/res/css/light.css \
|
|
qt/res/css/scrollbars.css \
|
|
qt/res/css/trad.css
|
|
|
|
RES_MOVIES = $(wildcard $(srcdir)/qt/res/movies/spinner-*.png)
|
|
|
|
BITCOIN_RC = qt/res/dash-qt-res.rc
|
|
|
|
BITCOIN_QT_INCLUDES = -DQT_NO_KEYWORDS
|
|
|
|
qt_libdashqt_a_CPPFLAGS = $(AM_CPPFLAGS) $(BITCOIN_INCLUDES) $(BITCOIN_QT_INCLUDES) \
|
|
$(QT_INCLUDES) $(QT_DBUS_INCLUDES) $(PROTOBUF_CFLAGS) $(QR_CFLAGS)
|
|
qt_libdashqt_a_CXXFLAGS = $(AM_CXXFLAGS) $(QT_PIE_FLAGS)
|
|
qt_libdashqt_a_OBJCXXFLAGS = $(AM_OBJCXXFLAGS) $(QT_PIE_FLAGS)
|
|
|
|
qt_libdashqt_a_SOURCES = $(BITCOIN_QT_CPP) $(BITCOIN_QT_H) $(QT_FORMS_UI) \
|
|
$(QT_QRC) $(QT_QRC_LOCALE) $(QT_TS) $(PROTOBUF_PROTO) $(RES_ICONS) $(RES_IMAGES) $(RES_CSS) $(RES_MOVIES)
|
|
|
|
nodist_qt_libdashqt_a_SOURCES = $(QT_MOC_CPP) $(QT_MOC) $(PROTOBUF_CC) \
|
|
$(PROTOBUF_H) $(QT_QRC_CPP) $(QT_QRC_LOCALE_CPP)
|
|
|
|
# forms/foo.h -> forms/ui_foo.h
|
|
QT_FORMS_H=$(join $(dir $(QT_FORMS_UI)),$(addprefix ui_, $(notdir $(QT_FORMS_UI:.ui=.h))))
|
|
|
|
# Most files will depend on the forms and moc files as includes. Generate them
|
|
# before anything else.
|
|
$(QT_MOC): $(QT_FORMS_H)
|
|
$(qt_libdashqt_a_OBJECTS) $(qt_dash_qt_OBJECTS) : | $(QT_MOC)
|
|
|
|
#Generating these with a half-written protobuf header leads to wacky results.
|
|
#This makes sure it's done.
|
|
$(QT_MOC): $(PROTOBUF_H)
|
|
$(QT_MOC_CPP): $(PROTOBUF_H)
|
|
|
|
# dash-qt binary #
|
|
qt_dash_qt_CPPFLAGS = $(AM_CPPFLAGS) $(BITCOIN_INCLUDES) $(BITCOIN_QT_INCLUDES) \
|
|
$(QT_INCLUDES) $(PROTOBUF_CFLAGS) $(QR_CFLAGS)
|
|
qt_dash_qt_CXXFLAGS = $(AM_CXXFLAGS) $(QT_PIE_FLAGS)
|
|
|
|
qt_dash_qt_SOURCES = qt/dash.cpp
|
|
if TARGET_DARWIN
|
|
qt_dash_qt_SOURCES += $(BITCOIN_MM)
|
|
endif
|
|
if TARGET_WINDOWS
|
|
qt_dash_qt_SOURCES += $(BITCOIN_RC)
|
|
endif
|
|
qt_dash_qt_LDADD = qt/libdashqt.a $(LIBBITCOIN_SERVER)
|
|
if ENABLE_WALLET
|
|
qt_dash_qt_LDADD += $(LIBBITCOIN_WALLET)
|
|
endif
|
|
if ENABLE_ZMQ
|
|
qt_dash_qt_LDADD += $(LIBBITCOIN_ZMQ) $(ZMQ_LIBS)
|
|
endif
|
|
qt_dash_qt_LDADD += $(LIBBITCOIN_CLI) $(LIBBITCOIN_COMMON) $(LIBBITCOIN_UTIL) $(LIBBITCOIN_CONSENSUS) $(LIBBITCOIN_CRYPTO) $(LIBUNIVALUE) $(LIBLEVELDB) $(LIBLEVELDB_SSE42) $(LIBMEMENV) \
|
|
$(BACKTRACE_LIB) $(BOOST_LIBS) $(QT_LIBS) $(QT_DBUS_LIBS) $(QR_LIBS) $(PROTOBUF_LIBS) $(BDB_LIBS) $(SSL_LIBS) $(CRYPTO_LIBS) $(MINIUPNPC_LIBS) $(LIBSECP256K1) \
|
|
$(EVENT_PTHREADS_LIBS) $(EVENT_LIBS) $(BLS_LIBS)
|
|
qt_dash_qt_LDFLAGS = $(LDFLAGS_WRAP_EXCEPTIONS) $(RELDFLAGS) $(AM_LDFLAGS) $(QT_LDFLAGS) $(LIBTOOL_APP_LDFLAGS)
|
|
qt_dash_qt_LIBTOOLFLAGS = --tag CXX
|
|
|
|
#locale/foo.ts -> locale/foo.qm
|
|
QT_QM=$(QT_TS:.ts=.qm)
|
|
|
|
SECONDARY: $(QT_QM)
|
|
|
|
$(srcdir)/qt/dashstrings.cpp: $(libdash_server_a_SOURCES) $(libdash_wallet_a_SOURCES) $(libdash_common_a_SOURCES) $(libdash_zmq_a_SOURCES) $(libdash_consensus_a_SOURCES) $(libdash_util_a_SOURCES)
|
|
@test -n $(XGETTEXT) || echo "xgettext is required for updating translations"
|
|
$(AM_V_GEN) cd $(srcdir); XGETTEXT=$(XGETTEXT) PACKAGE_NAME="$(PACKAGE_NAME)" COPYRIGHT_HOLDERS="$(COPYRIGHT_HOLDERS)" COPYRIGHT_HOLDERS_SUBSTITUTION="$(COPYRIGHT_HOLDERS_SUBSTITUTION)" $(PYTHON) ../share/qt/extract_strings_qt.py $^
|
|
|
|
translate: $(srcdir)/qt/dashstrings.cpp $(QT_FORMS_UI) $(QT_FORMS_UI) $(BITCOIN_QT_BASE_CPP) qt/dash.cpp $(BITCOIN_QT_WINDOWS_CPP) $(BITCOIN_QT_WALLET_CPP) $(BITCOIN_QT_H) $(BITCOIN_MM)
|
|
@test -n $(LUPDATE) || echo "lupdate is required for updating translations"
|
|
$(AM_V_GEN) QT_SELECT=$(QT_SELECT) $(LUPDATE) $^ -locations relative -no-obsolete -ts $(srcdir)/qt/locale/dash_en.ts
|
|
|
|
$(QT_QRC_LOCALE_CPP): $(QT_QRC_LOCALE) $(QT_QM)
|
|
@test -f $(RCC)
|
|
@cp -f $< $(@D)/temp_$(<F)
|
|
$(AM_V_GEN) QT_SELECT=$(QT_SELECT) $(RCC) $(RCCFLAGS) -name dash_locale $(@D)/temp_$(<F) | \
|
|
$(SED) -e '/^\*\*.*Created:/d' -e '/^\*\*.*by:/d' > $@
|
|
@rm $(@D)/temp_$(<F)
|
|
|
|
$(QT_QRC_CPP): $(QT_QRC) $(QT_FORMS_H) $(RES_ICONS) $(RES_IMAGES) $(RES_CSS) $(RES_MOVIES) $(PROTOBUF_H)
|
|
@test -f $(RCC)
|
|
$(AM_V_GEN) QT_SELECT=$(QT_SELECT) $(RCC) $(RCCFLAGS) -name dash $< | \
|
|
$(SED) -e '/^\*\*.*Created:/d' -e '/^\*\*.*by:/d' > $@
|
|
|
|
CLEAN_QT = $(nodist_qt_libdashqt_a_SOURCES) $(QT_QM) $(QT_FORMS_H) qt/*.gcda qt/*.gcno qt/temp_dash_locale.qrc
|
|
|
|
CLEANFILES += $(CLEAN_QT)
|
|
|
|
dash_qt_clean: FORCE
|
|
rm -f $(CLEAN_QT) $(qt_libdashqt_a_OBJECTS) $(qt_dash_qt_OBJECTS) qt/dash-qt$(EXEEXT) $(LIBBITCOINQT)
|
|
|
|
dash_qt : qt/dash-qt$(EXEEXT)
|
|
|
|
ui_%.h: %.ui
|
|
@test -f $(UIC)
|
|
@$(MKDIR_P) $(@D)
|
|
$(AM_V_GEN) QT_SELECT=$(QT_SELECT) $(UIC) -o $@ $< || (echo "Error creating $@"; false)
|
|
|
|
%.moc: %.cpp
|
|
$(AM_V_GEN) QT_SELECT=$(QT_SELECT) $(MOC) $(DEFAULT_INCLUDES) $(QT_INCLUDES) $(MOC_DEFS) $< | \
|
|
$(SED) -e '/^\*\*.*Created:/d' -e '/^\*\*.*by:/d' > $@
|
|
|
|
moc_%.cpp: %.h
|
|
$(AM_V_GEN) QT_SELECT=$(QT_SELECT) $(MOC) $(DEFAULT_INCLUDES) $(QT_INCLUDES) $(MOC_DEFS) $< | \
|
|
$(SED) -e '/^\*\*.*Created:/d' -e '/^\*\*.*by:/d' > $@
|
|
|
|
%.qm: %.ts
|
|
@test -f $(LRELEASE)
|
|
@$(MKDIR_P) $(@D)
|
|
$(AM_V_GEN) QT_SELECT=$(QT_SELECT) $(LRELEASE) -silent $< -qm $@
|