2011-05-07 13:13:39 -07:00
|
|
|
TEMPLATE = app
|
2012-07-22 23:08:34 -07:00
|
|
|
TARGET = bitcoin-qt
|
2013-01-30 11:19:09 -08:00
|
|
|
VERSION = 0.8.0
|
2011-09-27 11:16:07 -07:00
|
|
|
INCLUDEPATH += src src/json src/qt
|
2012-06-08 09:35:58 -07:00
|
|
|
DEFINES += QT_GUI BOOST_THREAD_USE_LIB BOOST_SPIRIT_THREADSAFE
|
2011-07-03 11:53:56 -07:00
|
|
|
CONFIG += no_include_pwd
|
2012-09-21 12:42:38 -07:00
|
|
|
CONFIG += thread
|
2011-06-13 23:13:29 -07:00
|
|
|
|
2012-06-24 09:03:03 -07:00
|
|
|
# for boost 1.37, add -mt to the boost libraries
|
2011-09-24 02:43:58 -07:00
|
|
|
# use: qmake BOOST_LIB_SUFFIX=-mt
|
2011-10-06 14:02:21 -07:00
|
|
|
# for boost thread win32 with _win32 sufix
|
|
|
|
# use: BOOST_THREAD_LIB_SUFFIX=_win32-...
|
2011-09-29 10:53:44 -07:00
|
|
|
# or when linking against a specific BerkelyDB version: BDB_LIB_SUFFIX=-4.8
|
2011-09-24 02:43:58 -07:00
|
|
|
|
2012-06-24 09:03:03 -07: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 12:31:29 -07:00
|
|
|
|
2011-09-26 10:14:34 -07:00
|
|
|
OBJECTS_DIR = build
|
|
|
|
MOC_DIR = build
|
|
|
|
UI_DIR = build
|
|
|
|
|
2011-11-07 06:50:03 -08: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
|
2012-12-04 10:42:21 -08:00
|
|
|
macx:QMAKE_CFLAGS += -mmacosx-version-min=10.5 -arch i386 -isysroot /Developer/SDKs/MacOSX10.5.sdk
|
|
|
|
macx:QMAKE_OBJECTIVE_CFLAGS += -mmacosx-version-min=10.5 -arch i386 -isysroot /Developer/SDKs/MacOSX10.5.sdk
|
2011-11-07 06:50:03 -08:00
|
|
|
|
2012-12-15 02:02:37 -08:00
|
|
|
!win32:!macx {
|
2011-11-07 06:50:03 -08:00
|
|
|
# Linux: static link
|
2013-02-15 13:53:50 -08:00
|
|
|
LIBS += -Wl,-Bstatic -Wl,-z,relro -Wl,-z,now
|
|
|
|
# for extra security (see: https://wiki.debian.org/Hardening)
|
|
|
|
QMAKE_CXXFLAGS *= -D_FORTIFY_SOURCE=2
|
2011-11-07 06:50:03 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-07-16 05:33:25 -07:00
|
|
|
!win32 {
|
2013-02-15 13:53:50 -08:00
|
|
|
# for extra security against potential buffer overflows: enable GCCs Stack Smashing Protection
|
|
|
|
QMAKE_CXXFLAGS *= -fstack-protector-all
|
|
|
|
QMAKE_LFLAGS *= -fstack-protector-all
|
|
|
|
# Exclude on Windows cross compile with MinGW 4.2.x, as it will result in a non-working executable!
|
|
|
|
# This can be enabled for Windows, when we switch to MinGW >= 4.4.x.
|
2012-07-16 05:33:25 -07:00
|
|
|
}
|
2012-08-14 02:37:21 -07:00
|
|
|
# for extra security on Windows: enable ASLR and DEP via GCC linker flags
|
|
|
|
win32:QMAKE_LFLAGS *= -Wl,--dynamicbase -Wl,--nxcompat
|
2013-01-10 05:21:52 -08:00
|
|
|
# on Windows: enable GCC large address aware linker flag
|
|
|
|
win32:QMAKE_LFLAGS *= -Wl,--large-address-aware
|
2012-08-14 02:37:21 -07:00
|
|
|
|
2012-02-15 11:42:51 -08: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 12:02:12 -07: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 09:33:09 -07:00
|
|
|
message(Building with UPNP support)
|
2011-09-29 12:02:12 -07:00
|
|
|
count(USE_UPNP, 0) {
|
|
|
|
USE_UPNP=1
|
|
|
|
}
|
2011-10-16 21:09:22 -07:00
|
|
|
DEFINES += USE_UPNP=$$USE_UPNP STATICLIB
|
|
|
|
INCLUDEPATH += $$MINIUPNPC_INCLUDE_PATH
|
|
|
|
LIBS += $$join(MINIUPNPC_LIB_PATH,,-L,) -lminiupnpc
|
|
|
|
win32:LIBS += -liphlpapi
|
2011-09-02 09:33:09 -07:00
|
|
|
}
|
|
|
|
|
2011-09-19 03:40:23 -07:00
|
|
|
# use: qmake "USE_DBUS=1"
|
2011-09-29 10:53:44 -07:00
|
|
|
contains(USE_DBUS, 1) {
|
2011-09-03 11:52:54 -07:00
|
|
|
message(Building with DBUS (Freedesktop notifications) support)
|
2011-09-24 02:56:33 -07:00
|
|
|
DEFINES += USE_DBUS
|
2011-09-03 11:52:54 -07:00
|
|
|
QT += dbus
|
|
|
|
}
|
|
|
|
|
2012-06-08 09:43:06 -07:00
|
|
|
# use: qmake "USE_IPV6=1" ( enabled by default; default)
|
|
|
|
# or: qmake "USE_IPV6=0" (disabled by default)
|
2012-06-08 09:35:58 -07:00
|
|
|
# or: qmake "USE_IPV6=-" (not supported)
|
|
|
|
contains(USE_IPV6, -) {
|
2012-08-27 13:18:37 -07:00
|
|
|
message(Building without IPv6 support)
|
2012-06-08 09:35:58 -07:00
|
|
|
} else {
|
2012-08-27 13:18:37 -07:00
|
|
|
count(USE_IPV6, 0) {
|
|
|
|
USE_IPV6=1
|
|
|
|
}
|
|
|
|
DEFINES += USE_IPV6=$$USE_IPV6
|
2012-06-08 09:35:58 -07:00
|
|
|
}
|
|
|
|
|
2011-10-07 07:46:56 -07:00
|
|
|
contains(BITCOIN_NEED_QT_PLUGINS, 1) {
|
|
|
|
DEFINES += BITCOIN_NEED_QT_PLUGINS
|
2012-02-09 23:28:32 -08:00
|
|
|
QTPLUGIN += qcncodecs qjpcodecs qtwcodecs qkrcodecs qtaccessiblewidgets
|
2011-10-07 07:46:56 -07:00
|
|
|
}
|
|
|
|
|
2012-10-16 13:23:39 -07:00
|
|
|
INCLUDEPATH += src/leveldb/include src/leveldb/helpers
|
|
|
|
LIBS += $$PWD/src/leveldb/libleveldb.a $$PWD/src/leveldb/libmemenv.a
|
2012-12-15 02:02:37 -08:00
|
|
|
!win32 {
|
2013-02-15 11:10:01 -08:00
|
|
|
genleveldb.commands = cd $$PWD/src/leveldb && CC=$$QMAKE_CC CXX=$$QMAKE_CXX $(MAKE) OPT=\"$$QMAKE_CXXFLAGS\" libleveldb.a libmemenv.a
|
2012-08-30 12:13:50 -07:00
|
|
|
} else {
|
2012-10-16 13:23:39 -07:00
|
|
|
# make an educated guess about what the ranlib command is called
|
|
|
|
isEmpty(QMAKE_RANLIB) {
|
|
|
|
QMAKE_RANLIB = $$replace(QMAKE_STRIP, strip, ranlib)
|
2012-08-30 12:13:50 -07:00
|
|
|
}
|
2012-12-21 11:41:48 -08:00
|
|
|
LIBS += -lshlwapi
|
2013-02-15 11:10:01 -08:00
|
|
|
genleveldb.commands = cd $$PWD/src/leveldb && CC=$$QMAKE_CC CXX=$$QMAKE_CXX TARGET_OS=OS_WINDOWS_CROSSCOMPILE $(MAKE) OPT=\"$$QMAKE_CXXFLAGS\" libleveldb.a libmemenv.a && $$QMAKE_RANLIB $$PWD/src/leveldb/libleveldb.a && $$QMAKE_RANLIB $$PWD/src/leveldb/libmemenv.a
|
2012-08-30 12:13:50 -07:00
|
|
|
}
|
2012-10-16 13:23:39 -07:00
|
|
|
genleveldb.target = $$PWD/src/leveldb/libleveldb.a
|
|
|
|
genleveldb.depends = FORCE
|
|
|
|
PRE_TARGETDEPS += $$PWD/src/leveldb/libleveldb.a
|
|
|
|
QMAKE_EXTRA_TARGETS += genleveldb
|
2012-12-21 11:41:48 -08:00
|
|
|
# Gross ugly hack that depends on qmake internals, unfortunately there is no other way to do it.
|
2012-10-16 13:23:39 -07:00
|
|
|
QMAKE_CLEAN += $$PWD/src/leveldb/libleveldb.a; cd $$PWD/src/leveldb ; $(MAKE) clean
|
2011-07-09 02:54:25 -07:00
|
|
|
|
2012-04-06 17:06:53 -07:00
|
|
|
# regenerate src/build.h
|
2012-12-15 02:02:37 -08:00
|
|
|
!win32|contains(USE_BUILD_INFO, 1) {
|
2012-04-10 17:21:29 -07:00
|
|
|
genbuild.depends = FORCE
|
2012-05-17 08:15:28 -07:00
|
|
|
genbuild.commands = cd $$PWD; /bin/sh share/genbuild.sh $$OUT_PWD/build/build.h
|
2012-05-12 00:25:27 -07:00
|
|
|
genbuild.target = $$OUT_PWD/build/build.h
|
|
|
|
PRE_TARGETDEPS += $$OUT_PWD/build/build.h
|
2012-04-06 17:06:53 -07:00
|
|
|
QMAKE_EXTRA_TARGETS += genbuild
|
|
|
|
DEFINES += HAVE_BUILD_INFO
|
|
|
|
}
|
|
|
|
|
2012-09-30 06:26:41 -07:00
|
|
|
QMAKE_CXXFLAGS_WARN_ON = -fdiagnostics-show-option -Wall -Wextra -Wformat -Wformat-security -Wno-unused-parameter -Wstack-protector
|
2011-05-29 12:31:29 -07:00
|
|
|
|
2011-05-07 13:13:39 -07:00
|
|
|
# Input
|
2012-05-01 09:45:10 -07:00
|
|
|
DEPENDPATH += src src/json src/qt
|
2011-06-11 13:11:58 -07: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 08:33:15 -07:00
|
|
|
src/qt/addressbookpage.h \
|
2012-06-15 00:48:26 -07:00
|
|
|
src/qt/signverifymessagedialog.h \
|
2011-06-11 13:11:58 -07:00
|
|
|
src/qt/aboutdialog.h \
|
|
|
|
src/qt/editaddressdialog.h \
|
|
|
|
src/qt/bitcoinaddressvalidator.h \
|
2012-08-28 14:04:54 -07:00
|
|
|
src/alert.h \
|
2012-01-04 14:39:45 -08:00
|
|
|
src/addrman.h \
|
2011-06-11 13:11:58 -07:00
|
|
|
src/base58.h \
|
|
|
|
src/bignum.h \
|
2011-09-08 13:50:58 -07:00
|
|
|
src/checkpoints.h \
|
2012-01-03 14:33:31 -08:00
|
|
|
src/compat.h \
|
2012-05-11 08:00:03 -07:00
|
|
|
src/sync.h \
|
2011-06-11 13:11:58 -07:00
|
|
|
src/util.h \
|
2012-12-18 11:56:21 -08:00
|
|
|
src/hash.h \
|
2011-06-11 13:11:58 -07:00
|
|
|
src/uint256.h \
|
|
|
|
src/serialize.h \
|
|
|
|
src/main.h \
|
|
|
|
src/net.h \
|
|
|
|
src/key.h \
|
|
|
|
src/db.h \
|
2012-04-15 14:39:49 -07:00
|
|
|
src/walletdb.h \
|
2011-06-11 13:11:58 -07:00
|
|
|
src/script.h \
|
|
|
|
src/init.h \
|
|
|
|
src/irc.h \
|
2012-08-12 20:26:27 -07:00
|
|
|
src/bloom.h \
|
2012-02-27 08:55:53 -08:00
|
|
|
src/mruset.h \
|
2012-12-01 14:04:14 -08:00
|
|
|
src/checkqueue.h \
|
2011-06-11 13:11:58 -07: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 12:31:42 -07:00
|
|
|
src/qt/transactiondescdialog.h \
|
2011-06-26 10:23:24 -07:00
|
|
|
src/qt/bitcoinamountfield.h \
|
|
|
|
src/wallet.h \
|
2011-06-28 12:41:56 -07:00
|
|
|
src/keystore.h \
|
|
|
|
src/qt/transactionfilterproxy.h \
|
2011-06-30 09:05:29 -07:00
|
|
|
src/qt/transactionview.h \
|
2011-07-03 11:53:56 -07:00
|
|
|
src/qt/walletmodel.h \
|
2011-07-05 13:09:39 -07:00
|
|
|
src/bitcoinrpc.h \
|
2011-07-07 05:27:16 -07:00
|
|
|
src/qt/overviewpage.h \
|
2011-07-09 06:26:57 -07:00
|
|
|
src/qt/csvmodelwriter.h \
|
2011-07-16 10:01:05 -07:00
|
|
|
src/crypter.h \
|
|
|
|
src/qt/sendcoinsentry.h \
|
2011-07-25 12:35:45 -07:00
|
|
|
src/qt/qvalidatedlineedit.h \
|
2011-07-29 05:36:35 -07:00
|
|
|
src/qt/bitcoinunits.h \
|
2011-08-24 13:07:26 -07:00
|
|
|
src/qt/qvaluecombobox.h \
|
2011-09-02 09:02:22 -07:00
|
|
|
src/qt/askpassphrasedialog.h \
|
2011-09-03 11:52:54 -07:00
|
|
|
src/protocol.h \
|
2011-12-23 20:27:12 -08:00
|
|
|
src/qt/notificator.h \
|
2012-03-24 12:07:01 -07:00
|
|
|
src/qt/qtipcserver.h \
|
2012-04-04 04:19:30 -07:00
|
|
|
src/allocators.h \
|
2012-04-09 12:07:25 -07:00
|
|
|
src/ui_interface.h \
|
2012-08-22 04:00:27 -07:00
|
|
|
src/qt/rpcconsole.h \
|
2012-08-30 10:11:41 -07:00
|
|
|
src/version.h \
|
2012-08-14 02:21:48 -07:00
|
|
|
src/netbase.h \
|
2012-10-16 13:23:39 -07:00
|
|
|
src/clientversion.h \
|
|
|
|
src/txdb.h \
|
2012-12-12 10:31:18 -08:00
|
|
|
src/leveldb.h \
|
|
|
|
src/threadsafety.h
|
2011-09-02 09:02:22 -07:00
|
|
|
|
2011-06-11 13:11:58 -07: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 08:33:15 -07:00
|
|
|
src/qt/addressbookpage.cpp \
|
2012-06-15 00:48:26 -07:00
|
|
|
src/qt/signverifymessagedialog.cpp \
|
2011-06-11 13:11:58 -07:00
|
|
|
src/qt/aboutdialog.cpp \
|
|
|
|
src/qt/editaddressdialog.cpp \
|
|
|
|
src/qt/bitcoinaddressvalidator.cpp \
|
2012-08-28 14:04:54 -07:00
|
|
|
src/alert.cpp \
|
2012-04-06 17:06:53 -07:00
|
|
|
src/version.cpp \
|
2012-05-11 08:00:03 -07:00
|
|
|
src/sync.cpp \
|
2011-06-11 13:11:58 -07:00
|
|
|
src/util.cpp \
|
2013-01-10 10:16:00 -08:00
|
|
|
src/hash.cpp \
|
2012-01-03 14:33:31 -08:00
|
|
|
src/netbase.cpp \
|
2011-07-11 12:30:40 -07:00
|
|
|
src/key.cpp \
|
2011-06-11 13:11:58 -07:00
|
|
|
src/script.cpp \
|
|
|
|
src/main.cpp \
|
|
|
|
src/init.cpp \
|
|
|
|
src/net.cpp \
|
|
|
|
src/irc.cpp \
|
2012-08-12 20:26:27 -07:00
|
|
|
src/bloom.cpp \
|
2011-09-08 13:50:58 -07:00
|
|
|
src/checkpoints.cpp \
|
2012-01-04 14:39:45 -08:00
|
|
|
src/addrman.cpp \
|
2011-06-11 13:11:58 -07:00
|
|
|
src/db.cpp \
|
2012-04-15 14:39:49 -07:00
|
|
|
src/walletdb.cpp \
|
2011-06-11 13:11:58 -07:00
|
|
|
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 10:24:53 -07:00
|
|
|
src/qt/transactiondescdialog.cpp \
|
2011-06-20 12:31:42 -07:00
|
|
|
src/qt/bitcoinstrings.cpp \
|
2011-06-26 10:23:24 -07:00
|
|
|
src/qt/bitcoinamountfield.cpp \
|
|
|
|
src/wallet.cpp \
|
2011-06-28 12:41:56 -07:00
|
|
|
src/keystore.cpp \
|
|
|
|
src/qt/transactionfilterproxy.cpp \
|
2011-06-30 09:05:29 -07:00
|
|
|
src/qt/transactionview.cpp \
|
2011-07-03 11:53:56 -07:00
|
|
|
src/qt/walletmodel.cpp \
|
2011-07-05 13:09:39 -07:00
|
|
|
src/bitcoinrpc.cpp \
|
2011-07-13 02:56:38 -07:00
|
|
|
src/rpcdump.cpp \
|
2012-06-28 20:18:38 -07:00
|
|
|
src/rpcnet.cpp \
|
2012-08-20 23:21:33 -07:00
|
|
|
src/rpcmining.cpp \
|
2012-08-21 07:38:57 -07:00
|
|
|
src/rpcwallet.cpp \
|
2012-08-21 08:03:38 -07:00
|
|
|
src/rpcblockchain.cpp \
|
2012-05-31 13:01:16 -07:00
|
|
|
src/rpcrawtransaction.cpp \
|
2011-07-07 05:27:16 -07:00
|
|
|
src/qt/overviewpage.cpp \
|
2011-07-09 06:26:57 -07:00
|
|
|
src/qt/csvmodelwriter.cpp \
|
2011-07-16 10:01:05 -07:00
|
|
|
src/crypter.cpp \
|
|
|
|
src/qt/sendcoinsentry.cpp \
|
2011-07-25 12:35:45 -07:00
|
|
|
src/qt/qvalidatedlineedit.cpp \
|
2011-07-29 05:36:35 -07:00
|
|
|
src/qt/bitcoinunits.cpp \
|
2011-08-24 13:07:26 -07:00
|
|
|
src/qt/qvaluecombobox.cpp \
|
2011-09-02 09:02:22 -07:00
|
|
|
src/qt/askpassphrasedialog.cpp \
|
2011-09-03 11:52:54 -07:00
|
|
|
src/protocol.cpp \
|
2011-12-23 20:27:12 -08:00
|
|
|
src/qt/notificator.cpp \
|
2012-04-09 12:07:25 -07:00
|
|
|
src/qt/qtipcserver.cpp \
|
2012-02-27 03:55:04 -08:00
|
|
|
src/qt/rpcconsole.cpp \
|
2012-10-16 13:23:39 -07:00
|
|
|
src/noui.cpp \
|
|
|
|
src/leveldb.cpp \
|
|
|
|
src/txdb.cpp
|
2011-05-09 11:44:46 -07:00
|
|
|
|
|
|
|
RESOURCES += \
|
2011-06-11 13:11:58 -07:00
|
|
|
src/qt/bitcoin.qrc
|
2011-05-12 05:44:52 -07:00
|
|
|
|
|
|
|
FORMS += \
|
2011-06-11 13:11:58 -07:00
|
|
|
src/qt/forms/sendcoinsdialog.ui \
|
2011-07-07 08:33:15 -07:00
|
|
|
src/qt/forms/addressbookpage.ui \
|
2012-06-15 00:48:26 -07:00
|
|
|
src/qt/forms/signverifymessagedialog.ui \
|
2011-06-11 13:11:58 -07:00
|
|
|
src/qt/forms/aboutdialog.ui \
|
|
|
|
src/qt/forms/editaddressdialog.ui \
|
2011-07-05 13:09:39 -07:00
|
|
|
src/qt/forms/transactiondescdialog.ui \
|
2011-07-16 10:01:05 -07:00
|
|
|
src/qt/forms/overviewpage.ui \
|
2011-08-24 13:07:26 -07:00
|
|
|
src/qt/forms/sendcoinsentry.ui \
|
2012-04-09 12:07:25 -07:00
|
|
|
src/qt/forms/askpassphrasedialog.ui \
|
2012-02-27 03:55:04 -08:00
|
|
|
src/qt/forms/rpcconsole.ui \
|
2012-06-08 06:21:55 -07:00
|
|
|
src/qt/forms/optionsdialog.ui
|
2011-06-12 05:32:36 -07:00
|
|
|
|
2011-11-10 06:20:17 -08:00
|
|
|
contains(USE_QRCODE, 1) {
|
|
|
|
HEADERS += src/qt/qrcodedialog.h
|
|
|
|
SOURCES += src/qt/qrcodedialog.cpp
|
|
|
|
FORMS += src/qt/forms/qrcodedialog.ui
|
|
|
|
}
|
|
|
|
|
2012-02-10 14:25:36 -08:00
|
|
|
contains(BITCOIN_QT_TEST, 1) {
|
|
|
|
SOURCES += src/qt/test/test_main.cpp \
|
2012-03-25 14:25:10 -07:00
|
|
|
src/qt/test/uritests.cpp
|
|
|
|
HEADERS += src/qt/test/uritests.h
|
2012-02-10 14:25:36 -08:00
|
|
|
DEPENDPATH += src/qt/test
|
|
|
|
QT += testlib
|
|
|
|
TARGET = bitcoin-qt_test
|
|
|
|
DEFINES += BITCOIN_QT_TEST
|
|
|
|
}
|
|
|
|
|
2011-06-12 05:32:36 -07:00
|
|
|
CODECFORTR = UTF-8
|
2011-09-27 11:47:51 -07:00
|
|
|
|
2011-08-16 08:30:58 -07:00
|
|
|
# for lrelease/lupdate
|
2011-10-23 04:37:39 -07:00
|
|
|
# also add new translations to src/qt/bitcoin.qrc under translations/
|
|
|
|
TRANSLATIONS = $$files(src/qt/locale/bitcoin_*.ts)
|
2011-09-11 08:42:20 -07:00
|
|
|
|
2011-09-27 11:47:51 -07:00
|
|
|
isEmpty(QMAKE_LRELEASE) {
|
2012-03-21 14:29:33 -07:00
|
|
|
win32:QMAKE_LRELEASE = $$[QT_INSTALL_BINS]\\lrelease.exe
|
2011-09-27 11:47:51 -07:00
|
|
|
else:QMAKE_LRELEASE = $$[QT_INSTALL_BINS]/lrelease
|
|
|
|
}
|
2012-05-12 00:25:27 -07:00
|
|
|
isEmpty(QM_DIR):QM_DIR = $$PWD/src/qt/locale
|
2011-09-27 11:47:51 -07:00
|
|
|
# automatically build translations, so they can be included in resource file
|
|
|
|
TSQM.name = lrelease ${QMAKE_FILE_IN}
|
|
|
|
TSQM.input = TRANSLATIONS
|
2012-05-12 00:25:27 -07:00
|
|
|
TSQM.output = $$QM_DIR/${QMAKE_FILE_BASE}.qm
|
|
|
|
TSQM.commands = $$QMAKE_LRELEASE ${QMAKE_FILE_IN} -qm ${QMAKE_FILE_OUT}
|
2011-09-27 11:47:51 -07:00
|
|
|
TSQM.CONFIG = no_link
|
|
|
|
QMAKE_EXTRA_COMPILERS += TSQM
|
|
|
|
|
2011-09-28 13:01:47 -07:00
|
|
|
# "Other files" to show in Qt Creator
|
2011-09-11 08:42:20 -07:00
|
|
|
OTHER_FILES += \
|
2012-08-22 04:00:27 -07: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 08:42:20 -07:00
|
|
|
|
2011-09-24 02:43:58 -07:00
|
|
|
# platform specific defaults, if not overridden on command line
|
|
|
|
isEmpty(BOOST_LIB_SUFFIX) {
|
|
|
|
macx:BOOST_LIB_SUFFIX = -mt
|
2012-12-15 02:02:37 -08:00
|
|
|
win32:BOOST_LIB_SUFFIX = -mgw44-mt-s-1_50
|
2011-09-24 02:43:58 -07:00
|
|
|
}
|
|
|
|
|
2011-10-06 14:02:21 -07:00
|
|
|
isEmpty(BOOST_THREAD_LIB_SUFFIX) {
|
|
|
|
BOOST_THREAD_LIB_SUFFIX = $$BOOST_LIB_SUFFIX
|
|
|
|
}
|
|
|
|
|
2011-09-24 02:43:58 -07:00
|
|
|
isEmpty(BDB_LIB_PATH) {
|
|
|
|
macx:BDB_LIB_PATH = /opt/local/lib/db48
|
|
|
|
}
|
|
|
|
|
2011-10-10 08:13:32 -07:00
|
|
|
isEmpty(BDB_LIB_SUFFIX) {
|
|
|
|
macx:BDB_LIB_SUFFIX = -4.8
|
|
|
|
}
|
|
|
|
|
2011-09-24 02:43:58 -07: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-12-15 02:02:37 -08:00
|
|
|
win32:DEFINES += WIN32
|
|
|
|
win32:RC_FILE = src/qt/res/bitcoin-qt.rc
|
2011-09-19 03:40:23 -07:00
|
|
|
|
2012-12-15 02:02:37 -08:00
|
|
|
win32:!contains(MINGW_THREAD_BUGFIX, 0) {
|
2012-03-17 16:54:22 -07:00
|
|
|
# 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
|
|
|
|
}
|
|
|
|
|
2012-12-15 02:02:37 -08:00
|
|
|
!win32:!macx {
|
2011-12-19 15:49:07 -08:00
|
|
|
DEFINES += LINUX
|
2012-03-13 23:39:42 -07:00
|
|
|
LIBS += -lrt
|
2013-01-29 19:42:51 -08:00
|
|
|
# _FILE_OFFSET_BITS=64 lets 32-bit fopen transparently support large files.
|
|
|
|
DEFINES += _FILE_OFFSET_BITS=64
|
2011-12-19 15:49:07 -08:00
|
|
|
}
|
|
|
|
|
2011-10-07 04:21:45 -07: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 11:28:51 -08:00
|
|
|
macx:DEFINES += MAC_OSX MSG_NOSIGNAL=0
|
2011-09-11 08:42:20 -07:00
|
|
|
macx:ICON = src/qt/res/icons/bitcoin.icns
|
2011-10-10 08:13:32 -07:00
|
|
|
macx:TARGET = "Bitcoin-Qt"
|
2012-09-21 12:42:38 -07:00
|
|
|
macx:QMAKE_CFLAGS_THREAD += -pthread
|
|
|
|
macx:QMAKE_LFLAGS_THREAD += -pthread
|
|
|
|
macx:QMAKE_CXXFLAGS_THREAD += -pthread
|
2011-09-24 02:43:58 -07:00
|
|
|
|
|
|
|
# Set libraries and includes at end, to use platform-defined defaults if not overridden
|
2011-12-23 20:23:12 -08: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 10:53:44 -07:00
|
|
|
LIBS += -lssl -lcrypto -ldb_cxx$$BDB_LIB_SUFFIX
|
2011-12-03 18:48:32 -08:00
|
|
|
# -lgdi32 has to happen after -lcrypto (see #681)
|
2012-12-15 02:02:37 -08:00
|
|
|
win32:LIBS += -lws2_32 -lshlwapi -lmswsock -lole32 -loleaut32 -luuid -lgdi32
|
2011-10-06 14:02:21 -07:00
|
|
|
LIBS += -lboost_system$$BOOST_LIB_SUFFIX -lboost_filesystem$$BOOST_LIB_SUFFIX -lboost_program_options$$BOOST_LIB_SUFFIX -lboost_thread$$BOOST_THREAD_LIB_SUFFIX
|
2012-12-15 02:02:37 -08:00
|
|
|
win32:LIBS += -lboost_chrono$$BOOST_LIB_SUFFIX
|
2011-09-29 10:53:44 -07:00
|
|
|
|
2011-11-07 06:50:03 -08:00
|
|
|
contains(RELEASE, 1) {
|
2012-12-15 02:02:37 -08:00
|
|
|
!win32:!macx {
|
2011-11-07 06:50:03 -08:00
|
|
|
# Linux: turn dynamic linking back on for c/c++ runtime libraries
|
|
|
|
LIBS += -Wl,-Bdynamic
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-09-29 10:53:44 -07:00
|
|
|
system($$QMAKE_LRELEASE -silent $$_PRO_FILE_)
|