Setting up our development environment on Windows
In this recipe, we will get started by setting up our development environment on Windows. We will go through the installation of each of the required tools individually and in detail.
Getting ready
In order to start working with the examples from this book in the Microsoft Windows environment, you will need some essential tools to be installed in your system.
The most important one is Microsoft Visual Studio 2019. Additional tools include the Git version control system, the CMake build tool, and the Python programming language. Throughout this book, we use these tools on the command line only, so no GUI add-ons will be required.
How to do it...
Let's install each of the required tools individually.
Microsoft Visual Studio 2019
Follow these steps to install Microsoft Visual Studio 2019:
- Open https://visualstudio.microsoft.com and download the Visual Studio 2019 Community Edition installer.
- Start...