diff options
author | Jeff Garzik <jeff@garzik.org> | 2012-04-15 17:39:49 -0400 |
---|---|---|
committer | Pieter Wuille <pieter.wuille@gmail.com> | 2012-04-17 20:00:55 +0200 |
commit | 9eace6b1130ce7eb938476750159ec0baf752531 (patch) | |
tree | 1d4dfa6b1353129a91317a5fb3a0f624435c9377 /bitcoin-qt.pro | |
parent | ed6d0b5f852dc5f1c9407abecb5a9c6a7e42b4b2 (diff) |
Move CWalletDB code to new walletdb module.
In addition to standard code separation, this change opens the door
to fixing several include inter-dependencies.
Diffstat (limited to 'bitcoin-qt.pro')
-rw-r--r-- | bitcoin-qt.pro | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/bitcoin-qt.pro b/bitcoin-qt.pro index f79216e8dc..5d359c054a 100644 --- a/bitcoin-qt.pro +++ b/bitcoin-qt.pro @@ -117,6 +117,7 @@ HEADERS += src/qt/bitcoingui.h \ src/net.h \ src/key.h \ src/db.h \ + src/walletdb.h \ src/script.h \ src/init.h \ src/irc.h \ @@ -181,6 +182,7 @@ SOURCES += src/qt/bitcoin.cpp src/qt/bitcoingui.cpp \ src/checkpoints.cpp \ src/addrman.cpp \ src/db.cpp \ + src/walletdb.cpp \ src/json/json_spirit_writer.cpp \ src/json/json_spirit_value.cpp \ src/json/json_spirit_reader.cpp \ |