aboutsummaryrefslogtreecommitdiff
path: root/build_msvc
diff options
context:
space:
mode:
authorMurray Nesbitt <github@nesbitt.ca>2018-12-16 10:55:19 +0000
committerMurray Nesbitt <github@nesbitt.ca>2018-12-18 05:23:38 +0000
commit523785042b5fccda981d85a7ea85a8ce30fe1709 (patch)
treed5d2d2c1f2d2a89d249a5001ed267be73b90d482 /build_msvc
parent6d0a14703e288d72ff19d4d89defbc853233899f (diff)
downloadbitcoin-523785042b5fccda981d85a7ea85a8ce30fe1709.tar.xz
Modify build instructions to work with Command Prompt as well as
PowerShell; other minor changes
Diffstat (limited to 'build_msvc')
-rw-r--r--build_msvc/README.md15
1 files changed, 4 insertions, 11 deletions
diff --git a/build_msvc/README.md b/build_msvc/README.md
index 5fb08df8d7..63c5babf35 100644
--- a/build_msvc/README.md
+++ b/build_msvc/README.md
@@ -31,20 +31,13 @@ Additional dependencies required from the [bitcoin-core](https://github.com/bitc
Building
---------------------
-The instructions below use vcpkg to install the dependencies.
+The instructions below use `vcpkg` to install the dependencies.
-- Clone and vcpkg from the [github repository](https://github.com/Microsoft/vcpkg) and install as per the instructions in the main README.md.
+- Clone `vcpkg` from the [github repository](https://github.com/Microsoft/vcpkg) and install as per the instructions in the main README.md.
- Install the required packages (replace x64 with x86 as required):
-- Install the required dependencies with vcpkg:
```
- PS >.\vcpkg install boost:x64-windows-static `
- libevent:x64-windows-static `
- openssl:x64-windows-static `
- zeromq:x64-windows-static `
- berkeleydb:x64-windows-static `
- secp256k1:x64-windows-static `
- leveldb:x64-windows-static
+ PS >.\vcpkg install --triplet x64-windows-static boost-filesystem boost-signals2 boost-test libevent openssl zeromq berkeleydb secp256k1 leveldb
```
- Use Python to generate *.vcxproj from Makefile
@@ -53,4 +46,4 @@ The instructions below use vcpkg to install the dependencies.
PS >python msvc-autogen.py
```
-- Build in Visual Studio. \ No newline at end of file
+- Build in Visual Studio.