diff options
author | fanquake <fanquake@gmail.com> | 2020-02-28 08:36:50 +0800 |
---|---|---|
committer | fanquake <fanquake@gmail.com> | 2020-02-28 08:37:03 +0800 |
commit | fe63d79eabf1a9a0084d43802620d34f383aa358 (patch) | |
tree | 34828ee636ef23d2711aa9b9e91f9d0aa6489e65 | |
parent | 1615043935ef9c185eb1dc5d2365d0460424bc7b (diff) | |
parent | 76445677586a4c2fa72606b662269a4390c2e71f (diff) |
Merge #18212: doc: add missing step in win deployment instructions
76445677586a4c2fa72606b662269a4390c2e71f Add missing step in win deployment instructions (Dan Gershony)
Pull request description:
As explained in #17864 there is a missing step that was required to finish the compilation for Bitcoin Core on Windows.
ACKs for top commit:
sipsorcery:
ACK 76445677586a4c2fa72606b662269a4390c2e71f.
Tree-SHA512: 0d9ed248f511ea4f440d6c2f3e1235abbb3f9c0c576ca715df3cda91682d668991001197930e687ee48709eedbcf148d8ac9236464e9ce1d2ed15d8b3b4b252d
-rw-r--r-- | build_msvc/README.md | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/build_msvc/README.md b/build_msvc/README.md index e5aaf57abf..d4e710d55b 100644 --- a/build_msvc/README.md +++ b/build_msvc/README.md @@ -13,6 +13,7 @@ The minimal steps required to build Bitcoin Core with the msbuild toolchain are ``` vcpkg install --triplet x64-windows-static berkeleydb boost-filesystem boost-multi-index boost-signals2 boost-test boost-thread libevent[thread] rapidcheck zeromq double-conversion +vcpkg integrate install py -3 build_msvc\msvc-autogen.py msbuild /m build_msvc\bitcoin.sln /p:Platform=x64 /p:Configuration=Release /t:build ``` @@ -56,6 +57,7 @@ The instructions below use `vcpkg` to install the dependencies. ``` PS >.\vcpkg install --triplet x64-windows-static $(Get-Content -Path build_msvc\vcpkg-packages.txt).split() +PS >.\vcpkg integrate install ``` - Use Python to generate `*.vcxproj` from Makefile |