Skip to content

Commit 1d96788

Browse files
committed
build: Drop unneeded dependencies for bitcoin-wallet tool
1 parent 04437ee commit 1d96788

File tree

2 files changed

+12
-13
lines changed

2 files changed

+12
-13
lines changed

build_msvc/bitcoin-wallet/bitcoin-wallet.vcxproj

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -15,27 +15,18 @@
1515
<ProjectReference Include="..\libbitcoinconsensus\libbitcoinconsensus.vcxproj">
1616
<Project>{2b384fa8-9ee1-4544-93cb-0d733c25e8ce}</Project>
1717
</ProjectReference>
18-
<ProjectReference Include="..\libbitcoin_cli\libbitcoin_cli.vcxproj">
19-
<Project>{0667528c-d734-4009-adf9-c0d6c4a5a5a6}</Project>
20-
</ProjectReference>
2118
<ProjectReference Include="..\libbitcoin_common\libbitcoin_common.vcxproj">
2219
<Project>{7c87e378-df58-482e-aa2f-1bc129bc19ce}</Project>
2320
</ProjectReference>
2421
<ProjectReference Include="..\libbitcoin_crypto\libbitcoin_crypto.vcxproj">
2522
<Project>{6190199c-6cf4-4dad-bfbd-93fa72a760c1}</Project>
2623
</ProjectReference>
27-
<ProjectReference Include="..\libbitcoin_server\libbitcoin_server.vcxproj">
28-
<Project>{460fee33-1fe1-483f-b3bf-931ff8e969a5}</Project>
29-
</ProjectReference>
3024
<ProjectReference Include="..\libbitcoin_util\libbitcoin_util.vcxproj">
3125
<Project>{b53a5535-ee9d-4c6f-9a26-f79ee3bc3754}</Project>
3226
</ProjectReference>
3327
<ProjectReference Include="..\libbitcoin_wallet\libbitcoin_wallet.vcxproj">
3428
<Project>{93b86837-b543-48a5-a89b-7c87abb77df2}</Project>
3529
</ProjectReference>
36-
<ProjectReference Include="..\libbitcoin_zmq\libbitcoin_zmq.vcxproj">
37-
<Project>{792d487f-f14c-49fc-a9de-3fc150f31c3f}</Project>
38-
</ProjectReference>
3930
<ProjectReference Include="..\libunivalue\libunivalue.vcxproj">
4031
<Project>{5724ba7d-a09a-4ba8-800b-c4c1561b3d69}</Project>
4132
</ProjectReference>
@@ -45,9 +36,6 @@
4536
<ProjectReference Include="..\libsecp256k1\libsecp256k1.vcxproj">
4637
<Project>{bb493552-3b8c-4a8c-bf69-a6e7a51d2ea6}</Project>
4738
</ProjectReference>
48-
<ProjectReference Include="..\libleveldb\libleveldb.vcxproj">
49-
<Project>{18430fef-6b61-4c53-b396-718e02850f1b}</Project>
50-
</ProjectReference>
5139
</ItemGroup>
5240
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
5341
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />

src/Makefile.am

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -706,7 +706,18 @@ bitcoin_wallet_SOURCES = bitcoin-wallet.cpp
706706
bitcoin_wallet_CPPFLAGS = $(bitcoin_bin_cppflags)
707707
bitcoin_wallet_CXXFLAGS = $(bitcoin_bin_cxxflags)
708708
bitcoin_wallet_LDFLAGS = $(bitcoin_bin_ldflags)
709-
bitcoin_wallet_LDADD = $(LIBBITCOIN_WALLET_TOOL) $(bitcoin_bin_ldadd)
709+
bitcoin_wallet_LDADD = \
710+
$(LIBBITCOIN_WALLET_TOOL) \
711+
$(LIBBITCOIN_WALLET) \
712+
$(LIBBITCOIN_COMMON) \
713+
$(LIBBITCOIN_UTIL) \
714+
$(LIBUNIVALUE) \
715+
$(LIBBITCOIN_CONSENSUS) \
716+
$(LIBBITCOIN_CRYPTO) \
717+
$(LIBSECP256K1) \
718+
$(BOOST_LIBS) \
719+
$(BDB_LIBS) \
720+
$(SQLITE_LIBS)
710721

711722
if TARGET_WINDOWS
712723
bitcoin_wallet_SOURCES += bitcoin-wallet-res.rc

0 commit comments

Comments
 (0)