From 2b39868066521e3e96db3de71e9517c1038015ef Mon Sep 17 00:00:00 2001 From: willdunklin Date: Wed, 7 Dec 2022 15:32:49 -0500 Subject: [PATCH] Update readme to recommend ninja --- README.rst | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/README.rst b/README.rst index 7604dcde..cd47e1d0 100644 --- a/README.rst +++ b/README.rst @@ -214,6 +214,17 @@ Even though MSVC supports building multiple configurations, you should only buil If you need multiple configurations you should create multiple sub-folders and repeat the above instructions for each configuration. Also If you enable Python, please ensure that python is on your Windows PATH +.. note:: + Building with `Ninja `_ is highly recommended and can produce significantly faster build times. + + To use Ninja as your CMake generator, modify your ``cmake`` command like so:: + + cmake -G Ninja ... + + Then, to build, you can use the following command:: + + ninja + Getting Help ============