I created a project and used cmake to build a msbuild project for visual studio 14, then i compiled the project but when i tried to run the executable i see a message saying that ucrtbased.dll(Debug version) is needed, searching on the web i read this article: Introducing
the Universal CRT, it says that the UCRT SDK come along with the Visual Studio and its located at: 'C:\Program
Files (x86)\Windows Kits\10' and the 'ucrtbased.dll' is also there, in fact it is there, i saw the project properties and these are the include directories:
C:\Program Files\Microsoft Visual Studio 14.0\VC\include
C:\Program Files\Microsoft Visual Studio 14.0\VC\atlmfc\include
C:\Program Files\Windows Kits\10\Include\10.0.10240.0\ucrt
C:\Program Files\Windows Kits\8.1\Include\um
C:\Program Files\Windows Kits\8.1\Include\shared
C:\Program Files\Windows Kits\8.1\Include\winrt
and the library direcories:
C:\Program Files\Microsoft Visual Studio 14.0\VC\lib
C:\Program Files\Microsoft Visual Studio 14.0\VC\atlmfc\lib
C:\Program Files\Windows Kits\10\lib\10.0.10240.0\ucrt\x86
C:\Program Files\Windows Kits\8.1\lib\winv6.3\um\x86
C:\Program Files\Windows Kits\NETFXSDK\4.6.1\Lib\um\x86
I checked the 'windows kits\10\' and its all there, also in the 'Windows Kits\10\bin\x86\ucrt\' i can see the ucrtbased.dll there, so i want to know what else should i do to make the program run correctly?
Thanks all for attention.