Build binaries from source

Yes, i have tried to build from command line. Update is given below.

  1. Using visual studio 2013 via command line or gui.

    This executes and completes without generating lib files.

  2. Using visual studio 2015 via command line or gui.

    Fails with error(compiler error).

By checking the logs, says the “ucrtd.dll” error.

After so much checking.searching, found the following.
From VS 2015, From VS 2015 addutional requirement is added.
It is - Windows SDK must be installed.
It would be under - C:\Program Files (x86)\Windows Kits\10\Lib

CMake build error with VS 2015

Issue - ucrt.dll not found by VS 2015 compile/Link

Reason - ucrt is not in the VC directories path.

Temp. solution - Copied the following files from
C:\Program Files (x86)\Windows Kits\10\Lib\10.0.10150.0\ucrt\x86
C:\Program Files (x86)\Windows Kits\10\Lib\10.0.10150.0\ucrt\x64
to
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\lib
ucrt.lib
ucrtd.lib

After the steps the cmake started to work. But STILL THE BINARIES ARE NOT CREATING.

Any solution…