aboutsummaryrefslogtreecommitdiff
path: root/build_msvc
diff options
context:
space:
mode:
authordplusplus1024 <82842780+dplusplus1024@users.noreply.github.com>2021-04-19 16:41:34 -0600
committerGitHub <noreply@github.com>2021-04-19 16:41:34 -0600
commitde17d245b7462784f9d36591b0f346aa6b2e9b8c (patch)
treed1d9196b57b06730bcd4d8774c9ec1227359994c /build_msvc
parent13d27b452d4b60010c54d4f80757dea9805076be (diff)
downloadbitcoin-de17d245b7462784f9d36591b0f346aa6b2e9b8c.tar.xz
Re-add command to install vcpkg
`vcpkg integrate install` must be executed so that msbuild will automatically install external dependencies. It was removed in https://github.com/bitcoin/bitcoin/commit/712f95d3324d02310dd468e7bfd1e1b0df432e77 It was originally added in https://github.com/bitcoin/bitcoin/commit/76445677586a4c2fa72606b662269a4390c2e71f
Diffstat (limited to 'build_msvc')
-rw-r--r--build_msvc/README.md6
1 files changed, 5 insertions, 1 deletions
diff --git a/build_msvc/README.md b/build_msvc/README.md
index 87ea556a23..5ce0f6cde4 100644
--- a/build_msvc/README.md
+++ b/build_msvc/README.md
@@ -27,7 +27,11 @@ Options for installing the dependencies in a Visual Studio compatible manner are
- Download the source code, build each dependency, add the required include paths, link libraries and binary tools to the Visual Studio project files.
- Use [nuget](https://www.nuget.org/) packages with the understanding that any binary files have been compiled by an untrusted third party.
-The [external dependencies](https://github.com/bitcoin/bitcoin/blob/master/doc/dependencies.md) required for building are listed in the `build_msvc/vcpkg.json` file. The `msbuild` project files are configured to automatically install the `vcpkg` dependencies.
+The [external dependencies](https://github.com/bitcoin/bitcoin/blob/master/doc/dependencies.md) required for building are listed in the `build_msvc/vcpkg.json` file. To ensure `msbuild` project files automatically install the `vcpkg` dependencies use:
+
+```
+vcpkg integrate install
+```
Qt
---------------------