Seems to be complaining about a missing "MSVCP140D.dll". You can fix that by changing the profile setting in MSVC from
"debug" to "release" and recompiling.
The idea is that there are normal versions of those DLLs that most people will have anyway, and special debug ones that make debugging a bit easier whilst developing applications. Changing that flag will tell the program to use the normal ones instead, which is what you should do when distributing an application to end-users. Otherwise potential users would have to download the same development environment you're using just to run it.