diff options
author | Andrew Chow <achow101-github@achow101.com> | 2020-10-19 14:17:58 -0400 |
---|---|---|
committer | Andrew Chow <achow101-github@achow101.com> | 2020-11-18 11:56:12 -0500 |
commit | 99309ab3e96a290359b84f9b657c5115aa3470dd (patch) | |
tree | b846ed9614e7bd309e4e2095730f51b6e6d57eab /build_msvc/bitcoind | |
parent | ee47f11f7399ec3a4330ea1f2fc388c7e32959d6 (diff) |
Allow disabling BDB in configure with --without-bdb
Diffstat (limited to 'build_msvc/bitcoind')
-rw-r--r-- | build_msvc/bitcoind/bitcoind.vcxproj | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/build_msvc/bitcoind/bitcoind.vcxproj b/build_msvc/bitcoind/bitcoind.vcxproj index ae24cb100e..48dfafaee0 100644 --- a/build_msvc/bitcoind/bitcoind.vcxproj +++ b/build_msvc/bitcoind/bitcoind.vcxproj @@ -63,6 +63,10 @@ <ReplaceInFile FilePath="$(ConfigIniOut)" Replace="@ENABLE_WALLET_TRUE@" By=""></ReplaceInFile> <ReplaceInFile FilePath="$(ConfigIniOut)" + Replace="@USE_BDB_TRUE@" By=""></ReplaceInFile> + <ReplaceInFile FilePath="$(ConfigIniOut)" + Replace="@USE_SQLITE_TRUE@" By=""></ReplaceInFile> + <ReplaceInFile FilePath="$(ConfigIniOut)" Replace="@BUILD_BITCOIN_CLI_TRUE@" By=""></ReplaceInFile> <ReplaceInFile FilePath="$(ConfigIniOut)" Replace="@BUILD_BITCOIND_TRUE@" By=""></ReplaceInFile> |