Skip to content

Commit de17d24

Browse files
Re-add command to install vcpkg
`vcpkg integrate install` must be executed so that msbuild will automatically install external dependencies. It was removed in bitcoin/bitcoin@712f95d It was originally added in bitcoin/bitcoin@7644567
1 parent 13d27b4 commit de17d24

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

build_msvc/README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,11 @@ Options for installing the dependencies in a Visual Studio compatible manner are
2727
- Download the source code, build each dependency, add the required include paths, link libraries and binary tools to the Visual Studio project files.
2828
- Use [nuget](https://www.nuget.org/) packages with the understanding that any binary files have been compiled by an untrusted third party.
2929

30-
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.
30+
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:
31+
32+
```
33+
vcpkg integrate install
34+
```
3135

3236
Qt
3337
---------------------

0 commit comments

Comments
 (0)