gcontini
2020-03-21 b939d1a0b6b375ea5bae54d83a1cb89eb888c75a
doc/development/Build-the-library-windows.md
@@ -1,15 +1,14 @@
# Windows
# Build - Windows
This page describes how to build the library. It's a good starting point if you just downloaded it and you want to start explore.
Under windows both MSVC compiler and MinGW are supported
This page describes how to build the library. Under windows both MSVC compiler and MinGW are supported
## MSVC (2015~2019) - prerequisites
Pre-compiled [versions of boost](https://sourceforge.net/projects/boost/files/boost-binaries/) for windows are available at SourceForge. 
For MSVC 2019: recommended cmake => 3.15.2 (the version 3.14 embedded in visual studio is not working with boost 1.71), [boost 1.71 msvc-14.2](https://dl.bintray.com/boostorg/release/1.71.0/binaries/boost_1_71_0-msvc-14.2-64.exe)
For MSVC 2019: recommended cmake => 3.15.2 (the version 3.14 embedded in visual studio is not working with boost 1.71),
[boost 1.71 msvc-14.2](https://dl.bintray.com/boostorg/release/1.71.0/binaries/boost_1_71_0-msvc-14.2-64.exe)
### Download:
### Checkout the code
This project has a submodule (the license generator). Remember to add the option `--recursive` to clone it.
```console
@@ -29,7 +28,7 @@
```
### Supported cmake definitions/options
Below a list of some useful cmake configurations
Below a list of some useful cmake configurations:
|Definition name|Description|
|---------------|-----------|
@@ -44,4 +43,4 @@
cmake --build . --target install --config Release
ctest -C Release
```
```