From 4e8f2afeb62e216268eb9cd4fa245313e042d555 Mon Sep 17 00:00:00 2001 From: Vorobtsov Date: Fri, 21 May 2021 22:18:40 +0200 Subject: [PATCH] Add build instructions for Windows --- README.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/README.md b/README.md index 054680c5..2f949e35 100644 --- a/README.md +++ b/README.md @@ -70,6 +70,16 @@ docker run \ cmake --build . --config Release ``` +## Windows +Use Microsoft* Visual Studio x64 command prompt to run the following commands and build the project: +```sh +mkdir build +cd build +cmake -G "NMake Makefiles" CMAKE_CXX_FLAGS="/EHsc" .. +nmake +``` + + # Contributing See [CONTRIBUTING](CONTRIBUTING.md) for more information.