Assuming you are using visual studio, uou may want to use the static linking option, if you can:
https://msdn.microsoft.com/en-us/library/2kzt1wy3.aspx
/MT will put all those runtime libs IN your executable and save you much hassle. However, any libs you link with may also need to be compiled with /MT. It can be tricky sorting it all out.