2011-05-07 17:13:39 -03:00
|
|
|
TEMPLATE = app
|
2012-07-23 02:08:34 -04:00
|
|
|
TARGET = bitcoin-qt
|
2012-05-08 15:22:02 -04:00
|
|
|
VERSION = 0.6.99
|
2011-09-27 15:16:07 -03:00
|
|
|
INCLUDEPATH += src src/json src/qt
|
2012-06-08 12:35:58 -04:00
|
|
|
DEFINES += QT_GUI BOOST_THREAD_USE_LIB BOOST_SPIRIT_THREADSAFE
|
2011-07-03 14:53:56 -04:00
|
|
|
CONFIG += no_include_pwd
|
2011-06-14 02:13:29 -04:00
|
|
|
|
2012-06-24 12:03:03 -04:00
|
|
|
# for boost 1.37, add -mt to the boost libraries
|
2011-09-24 06:43:58 -03:00
|
|
|
# use: qmake BOOST_LIB_SUFFIX=-mt
|
2011-10-06 18:02:21 -03:00
|
|
|
# for boost thread win32 with _win32 sufix
|
|
|
|
# use: BOOST_THREAD_LIB_SUFFIX=_win32-...
|
2011-09-29 14:53:44 -03:00
|
|
|
# or when linking against a specific BerkelyDB version: BDB_LIB_SUFFIX=-4.8
|
2011-09-24 06:43:58 -03:00
|
|
|
|
2012-06-24 12:03:03 -04:00
|
|
|
# Dependency library locations can be customized with:
|
|
|
|
# BOOST_INCLUDE_PATH, BOOST_LIB_PATH, BDB_INCLUDE_PATH,
|
|
|
|
# BDB_LIB_PATH, OPENSSL_INCLUDE_PATH and OPENSSL_LIB_PATH respectively
|
2011-05-29 15:31:29 -04:00
|
|
|
|
2011-09-26 14:14:34 -03:00
|
|
|
OBJECTS_DIR = build
|
|
|
|
MOC_DIR = build
|
|
|
|
UI_DIR = build
|
|
|
|
|
2011-11-07 11:50:03 -03:00
|
|
|
# use: qmake "RELEASE=1"
|
|
|
|
contains(RELEASE, 1) {
|
|
|
|
# Mac: compile for maximum compatibility (10.5, 32-bit)
|
|
|
|
macx:QMAKE_CXXFLAGS += -mmacosx-version-min=10.5 -arch i386 -isysroot /Developer/SDKs/MacOSX10.5.sdk
|
|
|
|
|
|
|
|
!windows:!macx {
|
|
|
|
# Linux: static link
|
|
|
|
LIBS += -Wl,-Bstatic
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-08-14 05:37:21 -04:00
|
|
|
# for extra security on Windows: enable ASLR and DEP via GCC linker flags
|
|
|
|
win32:QMAKE_LFLAGS *= -Wl,--dynamicbase -Wl,--nxcompat
|
|
|
|
|
2012-02-15 16:42:51 -03:00
|
|
|
# use: qmake "USE_QRCODE=1"
|
|
|
|
# libqrencode (http://fukuchi.org/works/qrencode/index.en.html) must be installed for support
|
|
|
|
contains(USE_QRCODE, 1) {
|
|
|
|
message(Building with QRCode support)
|
|
|
|
DEFINES += USE_QRCODE
|
|
|
|
LIBS += -lqrencode
|
|
|
|
}
|
|
|
|
|
2011-09-29 16:02:12 -03:00
|
|
|
# use: qmake "USE_UPNP=1" ( enabled by default; default)
|
|
|
|
# or: qmake "USE_UPNP=0" (disabled by default)
|
|
|
|
# or: qmake "USE_UPNP=-" (not supported)
|
|
|
|
# miniupnpc (http://miniupnp.free.fr/files/) must be installed for support
|
|
|
|
contains(USE_UPNP, -) {
|
|
|
|
message(Building without UPNP support)
|
|
|
|
} else {
|
2011-09-02 13:33:09 -03:00
|
|
|
message(Building with UPNP support)
|
2011-09-29 16:02:12 -03:00
|
|
|
count(USE_UPNP, 0) {
|
|
|
|
USE_UPNP=1
|
|
|
|
}
|
2011-10-17 01:09:22 -03:00
|
|
|
DEFINES += USE_UPNP=$$USE_UPNP STATICLIB
|
|
|
|
INCLUDEPATH += $$MINIUPNPC_INCLUDE_PATH
|
|
|
|
LIBS += $$join(MINIUPNPC_LIB_PATH,,-L,) -lminiupnpc
|
|
|
|
win32:LIBS += -liphlpapi
|
2011-09-02 13:33:09 -03:00
|
|
|
}
|
|
|
|
|
2011-09-19 07:40:23 -03:00
|
|
|
# use: qmake "USE_DBUS=1"
|
2011-09-29 14:53:44 -03:00
|
|
|
contains(USE_DBUS, 1) {
|
2011-09-03 15:52:54 -03:00
|
|
|
message(Building with DBUS (Freedesktop notifications) support)
|
2011-09-24 06:56:33 -03:00
|
|
|
DEFINES += USE_DBUS
|
2011-09-03 15:52:54 -03:00
|
|
|
QT += dbus
|
|
|
|
}
|
|
|
|
|
2011-12-23 12:14:57 -03:00
|
|
|
# use: qmake "FIRST_CLASS_MESSAGING=1"
|
|
|
|
contains(FIRST_CLASS_MESSAGING, 1) {
|
|
|
|
message(Building with first-class messaging)
|
|
|
|
DEFINES += FIRST_CLASS_MESSAGING
|
|
|
|
}
|
|
|
|
|
2012-06-08 12:35:58 -04:00
|
|
|
# use: qmake "USE_IPV6=1" (enabled; default)
|
|
|
|
# or: qmake "USE_IPV6=-" (not supported)
|
|
|
|
contains(USE_IPV6, -) {
|
|
|
|
message(Building without IPv6 support)
|
|
|
|
} else {
|
|
|
|
DEFINES += USE_IPV6
|
|
|
|
}
|
|
|
|
|
2011-10-07 11:46:56 -03:00
|
|
|
contains(BITCOIN_NEED_QT_PLUGINS, 1) {
|
|
|
|
DEFINES += BITCOIN_NEED_QT_PLUGINS
|
2012-02-10 04:28:32 -03:00
|
|
|
QTPLUGIN += qcncodecs qjpcodecs qtwcodecs qkrcodecs qtaccessiblewidgets
|
2011-10-07 11:46:56 -03:00
|
|
|
}
|
|
|
|
|
2011-10-29 06:44:37 -03:00
|
|
|
!windows {
|
|
|
|
# for extra security against potential buffer overflows
|
|
|
|
QMAKE_CXXFLAGS += -fstack-protector
|
|
|
|
QMAKE_LFLAGS += -fstack-protector
|
|
|
|
# do not enable this on windows, as it will result in a non-working executable!
|
|
|
|
}
|
2011-07-09 05:54:25 -04:00
|
|
|
|
2012-04-06 21:06:53 -03:00
|
|
|
# regenerate src/build.h
|
2012-07-10 07:44:56 -04:00
|
|
|
!windows|contains(USE_BUILD_INFO, 1) {
|
2012-04-10 21:21:29 -03:00
|
|
|
genbuild.depends = FORCE
|
2012-05-17 11:15:28 -04:00
|
|
|
genbuild.commands = cd $$PWD; /bin/sh share/genbuild.sh $$OUT_PWD/build/build.h
|
2012-05-12 03:25:27 -04:00
|
|
|
genbuild.target = $$OUT_PWD/build/build.h
|
|
|
|
PRE_TARGETDEPS += $$OUT_PWD/build/build.h
|
2012-04-06 21:06:53 -03:00
|
|
|
QMAKE_EXTRA_TARGETS += genbuild
|
|
|
|
DEFINES += HAVE_BUILD_INFO
|
|
|
|
}
|
|
|
|
|
2012-05-08 21:48:14 -04:00
|
|
|
QMAKE_CXXFLAGS_WARN_ON = -fdiagnostics-show-option -Wall -Wextra -Wformat -Wformat-security -Wno-unused-parameter
|
2011-05-29 15:31:29 -04:00
|
|
|
|
2011-05-07 17:13:39 -03:00
|
|
|
# Input
|
2012-05-01 12:45:10 -04:00
|
|
|
DEPENDPATH += src src/json src/qt
|
2011-06-11 16:11:58 -04:00
|
|
|
HEADERS += src/qt/bitcoingui.h \
|
|
|
|
src/qt/transactiontablemodel.h \
|
|
|
|
src/qt/addresstablemodel.h \
|
|
|
|
src/qt/optionsdialog.h \
|
|
|
|
src/qt/sendcoinsdialog.h \
|
2011-07-07 11:33:15 -04:00
|
|
|
src/qt/addressbookpage.h \
|
2012-06-15 03:48:26 -04:00
|
|
|
src/qt/signverifymessagedialog.h \
|
2011-06-11 16:11:58 -04:00
|
|
|
src/qt/aboutdialog.h \
|
|
|
|
src/qt/editaddressdialog.h \
|
|
|
|
src/qt/bitcoinaddressvalidator.h \
|
2012-01-04 19:39:45 -03:00
|
|
|
src/addrman.h \
|
2011-06-11 16:11:58 -04:00
|
|
|
src/base58.h \
|
|
|
|
src/bignum.h \
|
2011-09-08 17:50:58 -03:00
|
|
|
src/checkpoints.h \
|
2012-01-03 19:33:31 -03:00
|
|
|
src/compat.h \
|
2012-05-11 11:00:03 -04:00
|
|
|
src/sync.h \
|
2011-06-11 16:11:58 -04:00
|
|
|
src/util.h \
|
|
|
|
src/uint256.h \
|
|
|
|
src/serialize.h \
|
|
|
|
src/strlcpy.h \
|
|
|
|
src/main.h \
|
|
|
|
src/net.h \
|
|
|
|
src/key.h \
|
|
|
|
src/db.h \
|
2012-04-15 18:39:49 -03:00
|
|
|
src/walletdb.h \
|
2011-06-11 16:11:58 -04:00
|
|
|
src/script.h \
|
|
|
|
src/init.h \
|
|
|
|
src/irc.h \
|
2012-02-27 13:55:53 -03:00
|
|
|
src/mruset.h \
|
2011-06-11 16:11:58 -04:00
|
|
|
src/json/json_spirit_writer_template.h \
|
|
|
|
src/json/json_spirit_writer.h \
|
|
|
|
src/json/json_spirit_value.h \
|
|
|
|
src/json/json_spirit_utils.h \
|
|
|
|
src/json/json_spirit_stream_reader.h \
|
|
|
|
src/json/json_spirit_reader_template.h \
|
|
|
|
src/json/json_spirit_reader.h \
|
|
|
|
src/json/json_spirit_error_position.h \
|
|
|
|
src/json/json_spirit.h \
|
|
|
|
src/qt/clientmodel.h \
|
|
|
|
src/qt/guiutil.h \
|
|
|
|
src/qt/transactionrecord.h \
|
|
|
|
src/qt/guiconstants.h \
|
|
|
|
src/qt/optionsmodel.h \
|
|
|
|
src/qt/monitoreddatamapper.h \
|
|
|
|
src/qt/transactiondesc.h \
|
2011-06-20 15:31:42 -04:00
|
|
|
src/qt/transactiondescdialog.h \
|
2011-06-26 13:23:24 -04:00
|
|
|
src/qt/bitcoinamountfield.h \
|
|
|
|
src/wallet.h \
|
2011-06-28 15:41:56 -04:00
|
|
|
src/keystore.h \
|
|
|
|
src/qt/transactionfilterproxy.h \
|
2011-06-30 12:05:29 -04:00
|
|
|
src/qt/transactionview.h \
|
2011-07-03 14:53:56 -04:00
|
|
|
src/qt/walletmodel.h \
|
2011-07-05 16:09:39 -04:00
|
|
|
src/bitcoinrpc.h \
|
2011-07-07 08:27:16 -04:00
|
|
|
src/qt/overviewpage.h \
|
2011-07-09 09:26:57 -04:00
|
|
|
src/qt/csvmodelwriter.h \
|
2011-07-16 13:01:05 -04:00
|
|
|
src/crypter.h \
|
|
|
|
src/qt/sendcoinsentry.h \
|
2011-07-25 15:35:45 -04:00
|
|
|
src/qt/qvalidatedlineedit.h \
|
2011-07-29 08:36:35 -04:00
|
|
|
src/qt/bitcoinunits.h \
|
2011-08-24 17:07:26 -03:00
|
|
|
src/qt/qvaluecombobox.h \
|
2011-09-02 13:02:22 -03:00
|
|
|
src/qt/askpassphrasedialog.h \
|
2011-09-03 15:52:54 -03:00
|
|
|
src/protocol.h \
|
2011-12-24 01:27:12 -03:00
|
|
|
src/qt/notificator.h \
|
2012-03-24 16:07:01 -03:00
|
|
|
src/qt/qtipcserver.h \
|
2012-04-04 08:19:30 -03:00
|
|
|
src/allocators.h \
|
2012-04-09 16:07:25 -03:00
|
|
|
src/ui_interface.h \
|
2012-08-22 07:00:27 -04:00
|
|
|
src/qt/rpcconsole.h \
|
|
|
|
src/version.h
|
2011-09-02 13:02:22 -03:00
|
|
|
|
2011-06-11 16:11:58 -04:00
|
|
|
SOURCES += src/qt/bitcoin.cpp src/qt/bitcoingui.cpp \
|
|
|
|
src/qt/transactiontablemodel.cpp \
|
|
|
|
src/qt/addresstablemodel.cpp \
|
|
|
|
src/qt/optionsdialog.cpp \
|
|
|
|
src/qt/sendcoinsdialog.cpp \
|
2011-07-07 11:33:15 -04:00
|
|
|
src/qt/addressbookpage.cpp \
|
2012-06-15 03:48:26 -04:00
|
|
|
src/qt/signverifymessagedialog.cpp \
|
2011-06-11 16:11:58 -04:00
|
|
|
src/qt/aboutdialog.cpp \
|
|
|
|
src/qt/editaddressdialog.cpp \
|
|
|
|
src/qt/bitcoinaddressvalidator.cpp \
|
2012-04-06 21:06:53 -03:00
|
|
|
src/version.cpp \
|
2012-05-11 11:00:03 -04:00
|
|
|
src/sync.cpp \
|
2011-06-11 16:11:58 -04:00
|
|
|
src/util.cpp \
|
2012-01-03 19:33:31 -03:00
|
|
|
src/netbase.cpp \
|
2011-07-11 15:30:40 -04:00
|
|
|
src/key.cpp \
|
2011-06-11 16:11:58 -04:00
|
|
|
src/script.cpp \
|
|
|
|
src/main.cpp \
|
|
|
|
src/init.cpp \
|
|
|
|
src/net.cpp \
|
|
|
|
src/irc.cpp \
|
2011-09-08 17:50:58 -03:00
|
|
|
src/checkpoints.cpp \
|
2012-01-04 19:39:45 -03:00
|
|
|
src/addrman.cpp \
|
2011-06-11 16:11:58 -04:00
|
|
|
src/db.cpp \
|
2012-04-15 18:39:49 -03:00
|
|
|
src/walletdb.cpp \
|
2011-06-11 16:11:58 -04:00
|
|
|
src/json/json_spirit_writer.cpp \
|
|
|
|
src/json/json_spirit_value.cpp \
|
|
|
|
src/json/json_spirit_reader.cpp \
|
|
|
|
src/qt/clientmodel.cpp \
|
|
|
|
src/qt/guiutil.cpp \
|
|
|
|
src/qt/transactionrecord.cpp \
|
|
|
|
src/qt/optionsmodel.cpp \
|
|
|
|
src/qt/monitoreddatamapper.cpp \
|
|
|
|
src/qt/transactiondesc.cpp \
|
2011-06-13 13:24:53 -04:00
|
|
|
src/qt/transactiondescdialog.cpp \
|
2011-06-20 15:31:42 -04:00
|
|
|
src/qt/bitcoinstrings.cpp \
|
2011-06-26 13:23:24 -04:00
|
|
|
src/qt/bitcoinamountfield.cpp \
|
|
|
|
src/wallet.cpp \
|
2011-06-28 15:41:56 -04:00
|
|
|
src/keystore.cpp \
|
|
|
|
src/qt/transactionfilterproxy.cpp \
|
2011-06-30 12:05:29 -04:00
|
|
|
src/qt/transactionview.cpp \
|
2011-07-03 14:53:56 -04:00
|
|
|
src/qt/walletmodel.cpp \
|
2011-07-05 16:09:39 -04:00
|
|
|
src/bitcoinrpc.cpp \
|
2011-07-13 05:56:38 -04:00
|
|
|
src/rpcdump.cpp \
|
2012-06-28 23:18:38 -04:00
|
|
|
src/rpcnet.cpp \
|
2012-08-21 02:21:33 -04:00
|
|
|
src/rpcmining.cpp \
|
2012-08-21 10:38:57 -04:00
|
|
|
src/rpcwallet.cpp \
|
2012-08-21 11:03:38 -04:00
|
|
|
src/rpcblockchain.cpp \
|
2012-05-31 16:01:16 -04:00
|
|
|
src/rpcrawtransaction.cpp \
|
2011-07-07 08:27:16 -04:00
|
|
|
src/qt/overviewpage.cpp \
|
2011-07-09 09:26:57 -04:00
|
|
|
src/qt/csvmodelwriter.cpp \
|
2011-07-16 13:01:05 -04:00
|
|
|
src/crypter.cpp \
|
|
|
|
src/qt/sendcoinsentry.cpp \
|
2011-07-25 15:35:45 -04:00
|
|
|
src/qt/qvalidatedlineedit.cpp \
|
2011-07-29 08:36:35 -04:00
|
|
|
src/qt/bitcoinunits.cpp \
|
2011-08-24 17:07:26 -03:00
|
|
|
src/qt/qvaluecombobox.cpp \
|
2011-09-02 13:02:22 -03:00
|
|
|
src/qt/askpassphrasedialog.cpp \
|
2011-09-03 15:52:54 -03:00
|
|
|
src/protocol.cpp \
|
2011-12-24 01:27:12 -03:00
|
|
|
src/qt/notificator.cpp \
|
2012-04-09 16:07:25 -03:00
|
|
|
src/qt/qtipcserver.cpp \
|
2012-02-27 08:55:04 -03:00
|
|
|
src/qt/rpcconsole.cpp \
|
2012-06-24 12:03:03 -04:00
|
|
|
src/noui.cpp
|
2011-05-09 14:44:46 -04:00
|
|
|
|
|
|
|
RESOURCES += \
|
2011-06-11 16:11:58 -04:00
|
|
|
src/qt/bitcoin.qrc
|
2011-05-12 08:44:52 -04:00
|
|
|
|
|
|
|
FORMS += \
|
2011-06-11 16:11:58 -04:00
|
|
|
src/qt/forms/sendcoinsdialog.ui \
|
2011-07-07 11:33:15 -04:00
|
|
|
src/qt/forms/addressbookpage.ui \
|
2012-06-15 03:48:26 -04:00
|
|
|
src/qt/forms/signverifymessagedialog.ui \
|
2011-06-11 16:11:58 -04:00
|
|
|
src/qt/forms/aboutdialog.ui \
|
|
|
|
src/qt/forms/editaddressdialog.ui \
|
2011-07-05 16:09:39 -04:00
|
|
|
src/qt/forms/transactiondescdialog.ui \
|
2011-07-16 13:01:05 -04:00
|
|
|
src/qt/forms/overviewpage.ui \
|
2011-08-24 17:07:26 -03:00
|
|
|
src/qt/forms/sendcoinsentry.ui \
|
2012-04-09 16:07:25 -03:00
|
|
|
src/qt/forms/askpassphrasedialog.ui \
|
2012-02-27 08:55:04 -03:00
|
|
|
src/qt/forms/rpcconsole.ui \
|
2012-06-08 09:21:55 -04:00
|
|
|
src/qt/forms/optionsdialog.ui
|
2011-06-12 08:32:36 -04:00
|
|
|
|
2011-11-10 11:20:17 -03:00
|
|
|
contains(USE_QRCODE, 1) {
|
|
|
|
HEADERS += src/qt/qrcodedialog.h
|
|
|
|
SOURCES += src/qt/qrcodedialog.cpp
|
|
|
|
FORMS += src/qt/forms/qrcodedialog.ui
|
|
|
|
}
|
|
|
|
|
2012-02-10 19:25:36 -03:00
|
|
|
contains(BITCOIN_QT_TEST, 1) {
|
|
|
|
SOURCES += src/qt/test/test_main.cpp \
|
2012-03-25 18:25:10 -03:00
|
|
|
src/qt/test/uritests.cpp
|
|
|
|
HEADERS += src/qt/test/uritests.h
|
2012-02-10 19:25:36 -03:00
|
|
|
DEPENDPATH += src/qt/test
|
|
|
|
QT += testlib
|
|
|
|
TARGET = bitcoin-qt_test
|
|
|
|
DEFINES += BITCOIN_QT_TEST
|
|
|
|
}
|
|
|
|
|
2011-06-12 08:32:36 -04:00
|
|
|
CODECFORTR = UTF-8
|
2011-09-27 15:47:51 -03:00
|
|
|
|
2011-08-16 11:30:58 -04:00
|
|
|
# for lrelease/lupdate
|
2011-10-23 08:37:39 -03:00
|
|
|
# also add new translations to src/qt/bitcoin.qrc under translations/
|
|
|
|
TRANSLATIONS = $$files(src/qt/locale/bitcoin_*.ts)
|
2011-09-11 12:42:20 -03:00
|
|
|
|
2011-09-27 15:47:51 -03:00
|
|
|
isEmpty(QMAKE_LRELEASE) {
|
2012-03-21 18:29:33 -03:00
|
|
|
win32:QMAKE_LRELEASE = $$[QT_INSTALL_BINS]\\lrelease.exe
|
2011-09-27 15:47:51 -03:00
|
|
|
else:QMAKE_LRELEASE = $$[QT_INSTALL_BINS]/lrelease
|
|
|
|
}
|
2012-05-12 03:25:27 -04:00
|
|
|
isEmpty(QM_DIR):QM_DIR = $$PWD/src/qt/locale
|
2011-09-27 15:47:51 -03:00
|
|
|
# automatically build translations, so they can be included in resource file
|
|
|
|
TSQM.name = lrelease ${QMAKE_FILE_IN}
|
|
|
|
TSQM.input = TRANSLATIONS
|
2012-05-12 03:25:27 -04:00
|
|
|
TSQM.output = $$QM_DIR/${QMAKE_FILE_BASE}.qm
|
|
|
|
TSQM.commands = $$QMAKE_LRELEASE ${QMAKE_FILE_IN} -qm ${QMAKE_FILE_OUT}
|
2011-09-27 15:47:51 -03:00
|
|
|
TSQM.CONFIG = no_link
|
|
|
|
QMAKE_EXTRA_COMPILERS += TSQM
|
|
|
|
|
2011-09-28 17:01:47 -03:00
|
|
|
# "Other files" to show in Qt Creator
|
2011-09-11 12:42:20 -03:00
|
|
|
OTHER_FILES += \
|
2012-08-22 07:00:27 -04:00
|
|
|
doc/*.rst doc/*.txt doc/README README.md res/bitcoin-qt.rc src/test/*.cpp src/test/*.h src/qt/test/*.cpp src/qt/test/*.h
|
2011-09-11 12:42:20 -03:00
|
|
|
|
2011-09-24 06:43:58 -03:00
|
|
|
# platform specific defaults, if not overridden on command line
|
|
|
|
isEmpty(BOOST_LIB_SUFFIX) {
|
|
|
|
macx:BOOST_LIB_SUFFIX = -mt
|
2012-07-06 05:15:02 -04:00
|
|
|
windows:BOOST_LIB_SUFFIX = -mgw44-mt-s-1_49
|
2011-09-24 06:43:58 -03:00
|
|
|
}
|
|
|
|
|
2011-10-06 18:02:21 -03:00
|
|
|
isEmpty(BOOST_THREAD_LIB_SUFFIX) {
|
|
|
|
BOOST_THREAD_LIB_SUFFIX = $$BOOST_LIB_SUFFIX
|
|
|
|
}
|
|
|
|
|
2011-09-24 06:43:58 -03:00
|
|
|
isEmpty(BDB_LIB_PATH) {
|
|
|
|
macx:BDB_LIB_PATH = /opt/local/lib/db48
|
|
|
|
}
|
|
|
|
|
2011-10-10 12:13:32 -03:00
|
|
|
isEmpty(BDB_LIB_SUFFIX) {
|
|
|
|
macx:BDB_LIB_SUFFIX = -4.8
|
|
|
|
}
|
|
|
|
|
2011-09-24 06:43:58 -03:00
|
|
|
isEmpty(BDB_INCLUDE_PATH) {
|
|
|
|
macx:BDB_INCLUDE_PATH = /opt/local/include/db48
|
|
|
|
}
|
|
|
|
|
|
|
|
isEmpty(BOOST_LIB_PATH) {
|
|
|
|
macx:BOOST_LIB_PATH = /opt/local/lib
|
|
|
|
}
|
|
|
|
|
|
|
|
isEmpty(BOOST_INCLUDE_PATH) {
|
|
|
|
macx:BOOST_INCLUDE_PATH = /opt/local/include
|
|
|
|
}
|
|
|
|
|
2012-06-24 08:16:30 -04:00
|
|
|
windows:LIBS += -lws2_32 -lshlwapi -lmswsock
|
2012-03-17 20:54:22 -03:00
|
|
|
windows:DEFINES += WIN32
|
2011-09-19 07:40:23 -03:00
|
|
|
windows:RC_FILE = src/qt/res/bitcoin-qt.rc
|
|
|
|
|
2012-03-17 20:54:22 -03:00
|
|
|
windows:!contains(MINGW_THREAD_BUGFIX, 0) {
|
|
|
|
# At least qmake's win32-g++-cross profile is missing the -lmingwthrd
|
|
|
|
# thread-safety flag. GCC has -mthreads to enable this, but it doesn't
|
|
|
|
# work with static linking. -lmingwthrd must come BEFORE -lmingw, so
|
|
|
|
# it is prepended to QMAKE_LIBS_QT_ENTRY.
|
|
|
|
# It can be turned off with MINGW_THREAD_BUGFIX=0, just in case it causes
|
|
|
|
# any problems on some untested qmake profile now or in the future.
|
|
|
|
DEFINES += _MT
|
|
|
|
QMAKE_LIBS_QT_ENTRY = -lmingwthrd $$QMAKE_LIBS_QT_ENTRY
|
|
|
|
}
|
|
|
|
|
2011-12-19 20:49:07 -03:00
|
|
|
!windows:!mac {
|
|
|
|
DEFINES += LINUX
|
2012-03-14 03:39:42 -03:00
|
|
|
LIBS += -lrt
|
2011-12-19 20:49:07 -03:00
|
|
|
}
|
|
|
|
|
2011-10-07 08:21:45 -03:00
|
|
|
macx:HEADERS += src/qt/macdockiconhandler.h
|
|
|
|
macx:OBJECTIVE_SOURCES += src/qt/macdockiconhandler.mm
|
|
|
|
macx:LIBS += -framework Foundation -framework ApplicationServices -framework AppKit
|
2011-11-15 16:28:51 -03:00
|
|
|
macx:DEFINES += MAC_OSX MSG_NOSIGNAL=0
|
2011-09-11 12:42:20 -03:00
|
|
|
macx:ICON = src/qt/res/icons/bitcoin.icns
|
2011-10-10 12:13:32 -03:00
|
|
|
macx:TARGET = "Bitcoin-Qt"
|
2011-09-24 06:43:58 -03:00
|
|
|
|
|
|
|
# Set libraries and includes at end, to use platform-defined defaults if not overridden
|
2011-12-24 01:23:12 -03:00
|
|
|
INCLUDEPATH += $$BOOST_INCLUDE_PATH $$BDB_INCLUDE_PATH $$OPENSSL_INCLUDE_PATH $$QRENCODE_INCLUDE_PATH
|
|
|
|
LIBS += $$join(BOOST_LIB_PATH,,-L,) $$join(BDB_LIB_PATH,,-L,) $$join(OPENSSL_LIB_PATH,,-L,) $$join(QRENCODE_LIB_PATH,,-L,)
|
2011-09-29 14:53:44 -03:00
|
|
|
LIBS += -lssl -lcrypto -ldb_cxx$$BDB_LIB_SUFFIX
|
2011-12-03 23:48:32 -03:00
|
|
|
# -lgdi32 has to happen after -lcrypto (see #681)
|
2012-03-15 18:28:31 -03:00
|
|
|
windows:LIBS += -lole32 -luuid -lgdi32
|
2011-10-06 18:02:21 -03:00
|
|
|
LIBS += -lboost_system$$BOOST_LIB_SUFFIX -lboost_filesystem$$BOOST_LIB_SUFFIX -lboost_program_options$$BOOST_LIB_SUFFIX -lboost_thread$$BOOST_THREAD_LIB_SUFFIX
|
2011-09-29 14:53:44 -03:00
|
|
|
|
2011-11-07 11:50:03 -03:00
|
|
|
contains(RELEASE, 1) {
|
|
|
|
!windows:!macx {
|
|
|
|
# Linux: turn dynamic linking back on for c/c++ runtime libraries
|
|
|
|
LIBS += -Wl,-Bdynamic
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-09-29 14:53:44 -03:00
|
|
|
system($$QMAKE_LRELEASE -silent $$_PRO_FILE_)
|