MSVCR90D.dll not found in debug mode with Visual C++ 2008

前端 未结 10 897
萌比男神i
萌比男神i 2020-12-08 21:34

I have a problem with Visual C++ 2008. I have installed opencv and I\'ve created a new program and I build it with no errors. However, it complains about not finding MSVCR90

10条回答
  •  孤街浪徒
    2020-12-08 22:06

    I have solved same problem like below:

    1. Select project, right click and open property page.
    2. Select Configuration Properties.
    3. Select C/C++ from tree list.
    4. Select Code Generation.
    5. Look at the property list at left side and see the Runtime Library property.
    6. Select Multi-threaded Debug instead off Multi-threaded DLL.

    When you do that, your project embeds depended dlls and so it escaped dependency problems.

    Note: I worked on a dll project and had that problem. After doing above steps it worked for my situation.

提交回复
热议问题