Missing dll

When running/debugging a C++ project in Visual Studio 2012 (Right click->Debug->Start new instance) a system error occurs because it seems that 'd3dx9d.dll' is missing on my pc.

I know where the library is situated. This dll is part of the Lib directory which results from the successful installation of MS DirectX 9.0 SDK (October 2004).

In the project's property pages under 'VC++ Directories', I've changed the Include Directories (pointing to the Include directory of the SDK) and the Library Directories (pointing to the Lib directory of the SDK). Did I forget something necessary?

The debug output shows the following info:
1
2
3
4
'Test.exe' (Win32): Loaded 'C:\Windows\SysWOW64\ntdll.dll'. Cannot find or open the PDB file.
'Test.exe' (Win32): Loaded 'C:\Windows\SysWOW64\kernel32.dll'. Cannot find or open the PDB file.
'Test.exe' (Win32): Loaded 'C:\Windows\SysWOW64\KernelBase.dll'. Cannot find or open the PDB file.
The program '[3628] Test.exe' has exited with code -1073741515 (0xc0000135) 'A dependent dll was not found'.


Or do I've to manualy add the dll to the project?
Last edited on
Topic archived. No new replies allowed.