I use CMake to build win32 apps by using its Visual Studio 16 2019 generator and passing the following options:
cmake -G "Visual Studio 16 2019" -A Win32
I'd like to switch the Visual Studio 16 2019 generator with Ninja to build the same win32 app. However, CMake's Ninja generator does not offer the same high-level functionality as CMake's Visual Studio generators.
So, does anyone know how to configure Ninja to build win32 apps with the MSVC compiler?