From d0a6974827e1287bc5e19ad390b24f443c0e86e4 Mon Sep 17 00:00:00 2001 From: Sergey Kislyakov Date: Sat, 14 Apr 2018 16:36:26 +0300 Subject: [PATCH] Added a bunch of code blocks. (#347) --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 63494570..f26538b3 100644 --- a/README.md +++ b/README.md @@ -19,13 +19,13 @@ Install Visual Studio 2017 and select "Desktop development with C++" and "Univer download the [boost library](https://sourceforge.net/projects/boost/files/boost/1.63.0/boost_1_63_0.zip/download) and extract it to `C:\local\boost` ##### open-ssl 1. download binaries for OpenSSL >= 1.0.2 or compile it from source. [example download](https://indy.fulgan.com/SSL/) -2. Place libeay32.dll and ssleay32.dll from OpenSSL in a directory in PATH. +2. Place `libeay32.dll` and `ssleay32.dll` from OpenSSL in a directory in PATH. #### Using MSYS2 Building using MSYS2 can be quite easier process. Check out MSYS2 at [msys2.org](http://www.msys2.org/). -Be sure to add "-j " as a make argument so it will use all your cpu cores to build. [example setup](https://i.imgur.com/qlESlS1.png) -You can also add "-o2" to optimize the final binary size but increase compilation time, and add "-pipe" to use more ram in compilation but increase compilation speed -1. open appropriate MSYS2 terminal and do `pacman -S mingw-w64--boost mingw-w64--qt5 mingw-w64--rapidjson` where `` is x86_64 or i686 +Be sure to add `-j ` as a make argument so it will use all your cpu cores to build. ![example setup](https://i.imgur.com/qlESlS1.png) +You can also add `-o2` to optimize the final binary size but increase compilation time, and add `-pipe` to use more ram in compilation but increase compilation speed +1. open appropriate MSYS2 terminal and do `pacman -S mingw-w64--boost mingw-w64--qt5 mingw-w64--rapidjson` where `` is `x86_64` or `i686` 2. go into the project directory 3. create build folder `mkdir build && cd build` 4. `qmake .. && mingw32-make`