aboutsummaryrefslogtreecommitdiff
path: root/bitcoin-qt.pro
diff options
context:
space:
mode:
authorPhilip Kaufmann <phil.kaufmann@t-online.de>2012-08-14 11:21:48 +0200
committerPhilip Kaufmann <phil.kaufmann@t-online.de>2012-09-07 16:08:18 +0200
commitf875921176038c81b4ae7c113a9ebdc93e03b6aa (patch)
treef3092e18bb3e680a004a229d108af4c513a6d748 /bitcoin-qt.pro
parentb9a4aaad1e8279276002f54d66c0e9a8a5de6f56 (diff)
downloadbitcoin-f875921176038c81b4ae7c113a9ebdc93e03b6aa.tar.xz
Bitcoin-Qt (Windows only): add version info to Resource File
- add version information to bitcoin-qt.rc, which is displayed on Windows, when looking in the executable properties and selecting "Details" - introduce a new clientversion.h (used in bitcoin-qt.rc to generate version information), which takes only the version defines from version.h and is included in it (to allow usage with the windres rc-file compiler) - move #define STRINGIFY(s) #s into clientversion.h as that is used in bitcoin-qt.rc and rename to DO_STRINGIZE(X) - add #define STRINGIZE(X) DO_STRINGIZE(X), which is needed to convert the version defines into a version string in the rc-file - this ensures we only need to update 1 file and have bitcoin-qt.exe version information - for RC-file documentation see: http://msdn.microsoft.com/en-us/library/windows/desktop/aa381058%28v=vs.85%29.aspx
Diffstat (limited to 'bitcoin-qt.pro')
-rw-r--r--bitcoin-qt.pro3
1 files changed, 2 insertions, 1 deletions
diff --git a/bitcoin-qt.pro b/bitcoin-qt.pro
index 1d2b1dbdc3..cdd3bc2b81 100644
--- a/bitcoin-qt.pro
+++ b/bitcoin-qt.pro
@@ -178,7 +178,8 @@ HEADERS += src/qt/bitcoingui.h \
src/ui_interface.h \
src/qt/rpcconsole.h \
src/version.h \
- src/netbase.h
+ src/netbase.h \
+ src/clientversion.h
SOURCES += src/qt/bitcoin.cpp src/qt/bitcoingui.cpp \
src/qt/transactiontablemodel.cpp \