diff options
author | Hennadii Stepanov <32963518+hebasto@users.noreply.github.com> | 2023-12-13 14:29:12 +0000 |
---|---|---|
committer | Hennadii Stepanov <32963518+hebasto@users.noreply.github.com> | 2023-12-13 15:00:34 +0000 |
commit | f76e59d02ea819928b45bd18d9c3a5b1aab36fe2 (patch) | |
tree | b0fc656c73d2908166663867cb29d3ea480b2128 /build_msvc/bitcoind | |
parent | f0e829022a415c7c9513e715c532079ec7756306 (diff) |
msvc: Fix `test\config.ini` content
Diffstat (limited to 'build_msvc/bitcoind')
-rw-r--r-- | build_msvc/bitcoind/bitcoind.vcxproj | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/build_msvc/bitcoind/bitcoind.vcxproj b/build_msvc/bitcoind/bitcoind.vcxproj index bb61865e14..a93723d8be 100644 --- a/build_msvc/bitcoind/bitcoind.vcxproj +++ b/build_msvc/bitcoind/bitcoind.vcxproj @@ -74,15 +74,19 @@ <ReplaceInFile FilePath="$(ConfigIniOut)" Replace="@BUILD_BITCOIN_CLI_TRUE@" By=""></ReplaceInFile> <ReplaceInFile FilePath="$(ConfigIniOut)" + Replace="@BUILD_BITCOIN_UTIL_TRUE@" By=""></ReplaceInFile> + <ReplaceInFile FilePath="$(ConfigIniOut)" Replace="@BUILD_BITCOIN_WALLET_TRUE@" By=""></ReplaceInFile> <ReplaceInFile FilePath="$(ConfigIniOut)" Replace="@BUILD_BITCOIND_TRUE@" By=""></ReplaceInFile> <ReplaceInFile FilePath="$(ConfigIniOut)" - Replace="@ENABLE_FUZZ_TRUE@" By=""></ReplaceInFile> + Replace="@ENABLE_FUZZ_BINARY_TRUE@" By="#"></ReplaceInFile> <ReplaceInFile FilePath="$(ConfigIniOut)" Replace="@ENABLE_ZMQ_TRUE@" By=""></ReplaceInFile> <ReplaceInFile FilePath="$(ConfigIniOut)" - Replace="@ENABLE_EXTERNAL_SIGNER_TRUE@" By=""></ReplaceInFile> + Replace="@ENABLE_EXTERNAL_SIGNER_TRUE@" By="#"></ReplaceInFile> + <ReplaceInFile FilePath="$(ConfigIniOut)" + Replace="@ENABLE_USDT_TRACEPOINTS_TRUE@" By="#"></ReplaceInFile> </Target> <Import Project="..\common.vcxproj" /> </Project> |