aboutsummaryrefslogtreecommitdiff
path: root/build_msvc/README.md
diff options
context:
space:
mode:
authorfanquake <fanquake@gmail.com>2019-06-19 16:04:37 +0800
committerfanquake <fanquake@gmail.com>2019-06-19 16:04:37 +0800
commit4971be76a7b4515d1ecd8388ea7f486833dc0fc6 (patch)
tree9fa9f74eb23feda79aa48ee84d3ce83d289cf477 /build_msvc/README.md
parent44d81723236114f9370f386f3b3310477a6dde43 (diff)
downloadbitcoin-4971be76a7b4515d1ecd8388ea7f486833dc0fc6.tar.xz
docs: add rapidcheck to vcpkg install list
Diffstat (limited to 'build_msvc/README.md')
-rw-r--r--build_msvc/README.md17
1 files changed, 9 insertions, 8 deletions
diff --git a/build_msvc/README.md b/build_msvc/README.md
index 63c5babf35..d6543e6d67 100644
--- a/build_msvc/README.md
+++ b/build_msvc/README.md
@@ -17,16 +17,17 @@ 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 required for the Visual Studio build are (see the [dependencies doc](https://github.com/bitcoin/bitcoin/blob/master/doc/dependencies.md) for versions):
+The external dependencies required for the Visual Studio build are (see [dependencies.md](https://github.com/bitcoin/bitcoin/blob/master/doc/dependencies.md) for more info):
-- Berkeley DB,
-- OpenSSL,
-- Boost,
-- libevent,
+- Berkeley DB
+- OpenSSL
+- Boost
+- libevent
- ZeroMQ
+- RapidCheck
-Additional dependencies required from the [bitcoin-core](https://github.com/bitcoin-core) github repository are:
-- SECP256K1,
+Additional dependencies required from the [bitcoin-core](https://github.com/bitcoin-core) GitHub repository are:
+- libsecp256k1
- LevelDB
Building
@@ -37,7 +38,7 @@ The instructions below use `vcpkg` to install the dependencies.
- Install the required packages (replace x64 with x86 as required):
```
- PS >.\vcpkg install --triplet x64-windows-static boost-filesystem boost-signals2 boost-test libevent openssl zeromq berkeleydb secp256k1 leveldb
+ PS >.\vcpkg install --triplet x64-windows-static boost-filesystem boost-signals2 boost-test libevent openssl zeromq berkeleydb secp256k1 leveldb rapidcheck
```
- Use Python to generate *.vcxproj from Makefile