dogecoin/build_msvc
Wladimir J. van der Laan e9c190044d
Merge #15398: msvc: add rapidcheck property tests
d067e81dcf msvc: add rapid check property tests (Chun Kuan Lee)

Pull request description:

  This PR add the property tests into the binaries built by MSVC.

  And another trivial change is that I reordered the appveyor package list.

Tree-SHA512: 25d66db464beb7b512cc1f88d8557d6a047000a97d78f49884bb91a65ec142e0458039c919f51bf73413359fcf3e63e1ea4d76586b862f1c140d2ca05ee8b23d
2019-02-17 02:42:06 +01:00
..
bench_bitcoin msvc: build leveldb locally 2019-02-01 00:28:50 +08:00
bitcoin-cli Visual Studio build configuration for Bitcoin Core 2018-08-10 09:19:00 +02:00
bitcoin-tx msvc: build secp256k1 locally 2019-02-01 00:28:49 +08:00
bitcoin-wallet msvc: Fix silent merge conflict between #13926 and #14372 part II 2019-02-14 20:08:15 +08:00
bitcoind msvc: build leveldb locally 2019-02-01 00:28:50 +08:00
libbitcoin_cli auto generate MSVC project files 2018-08-26 23:54:26 +08:00
libbitcoin_common msvc: build secp256k1 locally 2019-02-01 00:28:49 +08:00
libbitcoin_crypto auto generate MSVC project files 2018-08-26 23:54:26 +08:00
libbitcoin_qt qt: Pre-0.18 split-off translations update 2019-02-04 15:24:37 +01:00
libbitcoin_server msvc: build leveldb locally 2019-02-01 00:28:50 +08:00
libbitcoin_util auto generate MSVC project files 2018-08-26 23:54:26 +08:00
libbitcoin_wallet auto generate MSVC project files 2018-08-26 23:54:26 +08:00
libbitcoin_wallet_tool [tools] Add wallet inspection and modification tool 2019-01-30 16:26:52 -05:00
libbitcoin_zmq auto generate MSVC project files 2018-08-26 23:54:26 +08:00
libbitcoinconsensus msvc: build secp256k1 locally 2019-02-01 00:28:49 +08:00
libleveldb msvc: build leveldb locally 2019-02-01 00:28:50 +08:00
libsecp256k1 msvc: build secp256k1 locally 2019-02-01 00:28:49 +08:00
libunivalue Visual Studio build configuration for Bitcoin Core 2018-08-10 09:19:00 +02:00
msbuild/tasks Visual Studio build configuration for Bitcoin Core 2018-08-10 09:19:00 +02:00
test_bitcoin msvc: add rapid check property tests 2019-02-04 21:06:44 +08:00
test_bitcoin-qt Visual Studio build configuration for Bitcoin Core 2018-08-10 09:19:00 +02:00
testconsensus msvc: build secp256k1 locally 2019-02-01 00:28:49 +08:00
.gitignore auto generate MSVC project files 2018-08-26 23:54:26 +08:00
bitcoin.sln msvc: build leveldb locally 2019-02-01 00:28:50 +08:00
bitcoin_config.h Visual Studio build configuration for Bitcoin Core 2018-08-10 09:19:00 +02:00
common.init.vcxproj Visual Studio build configuration for Bitcoin Core 2018-08-10 09:19:00 +02:00
common.vcxproj Merge #14922: windows: Set _WIN32_WINNT to 0x0601 (Windows 7) 2019-02-05 18:15:01 +01:00
libsecp256k1_config.h msvc: build secp256k1 locally 2019-02-01 00:28:49 +08:00
msvc-autogen.py [tools] Add wallet inspection and modification tool 2019-01-30 16:26:52 -05:00
README.md Modify build instructions to work with Command Prompt as well as 2018-12-18 05:23:38 +00:00

Building Bitcoin Core with Visual Studio

Introduction

Solution and project files to build the Bitcoin Core applications (except Qt dependent ones) with Visual Studio 2017 can be found in the build_msvc directory.

Building with Visual Studio is an alternative to the Linux based cross-compiler build.

Dependencies

A number of open source libraries are required in order to be able to build Bitcoin.

Options for installing the dependencies in a Visual Studio compatible manner are:

  • Use Microsoft's vcpkg to download the source packages and build locally. This is the recommended approach.
  • 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 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 for versions):

  • Berkeley DB,
  • OpenSSL,
  • Boost,
  • libevent,
  • ZeroMQ

Additional dependencies required from the bitcoin-core github repository are:

  • SECP256K1,
  • LevelDB

Building

The instructions below use vcpkg to install the dependencies.

  • Clone vcpkg from the github repository and install as per the instructions in the main README.md.
  • 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
  • Use Python to generate *.vcxproj from Makefile
    PS >python msvc-autogen.py
  • Build in Visual Studio.