Skip to content
This repository has been archived by the owner on May 17, 2022. It is now read-only.

Update Visual Studio details in Windows.rst #453

Closed
wants to merge 2 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,12 @@ You will need to install the following dependencies
+------------------------------+-------------------------------------------------------+
| `CMake`_ | Cross-platform build file generator. |
+------------------------------+-------------------------------------------------------+
| `Visual Studio 2015`_ | C++ compiler and dev environment. |
| `Visual Studio (>=2015)`_ | C++ compiler and dev environment. |
+------------------------------+-------------------------------------------------------+

.. _Git for Windows: https://git-scm.com/download/win
.. _CMake: https://cmake.org/download/
.. _Visual Studio 2015: https://www.visualstudio.com/products/vs-2015-product-editions
.. _Visual Studio (>=2015): https://www.visualstudio.com/vs/older-downloads/


Get the source
Expand Down Expand Up @@ -61,14 +61,15 @@ solution file using CMake: ::
mkdir build
cd build
cmake -G "Visual Studio 14 2015 Win64" ..

or

cmake -G "Visual Studio 15 2017 Win64" ..

Which should result in the creation of **cpp-ethereum.sln** in that build directory.

**NOTE**: We only support Visual Studio 2015 as of cpp-ethereum-v.1.3.0. If you don't
have it already, install the `Visual C++ 2015 Build Tools <http://landinghub.visualstudio.com/visual-cpp-build-tools>`_ **

Double-clicking on that file should result in Visual Studio firing up. We suggest
building **RelWithDebugInfo** configuration, but all others work.
building **RelWithDebugInfo** configuration, but all others work e.g. **Debug**)


Build on the command-line
Expand Down