DirectX Sample Browser Oct2005 SCRIPTING sample PROBLEMS!!!

Hi. I'm trying to compile the scripting sample project. First of all VS2005 complains that it cant find any of the .h files i went through to program files and copied all the Directx SDK .h files into my common folder for the project, now it can see them but errors on fatal error LNK1104: cannot open file 'dxerr9.lib'.  I assume it doesnt know where to look for the file. Can anyone help

Thanks


/dxstdafx.h
/ #define DXUT_AUTOLIB to automatically include the libs needed for DXUT

#ifdef DXUT_AUTOLIB

#pragma comment( lib, "dxerr9.lib" )

#pragma comment( lib, "dxguid.lib" )

#if defined(DEBUG) || defined(_DEBUG)

#pragma comment( lib, "d3dx9d.lib" )

#else

#pragma comment( lib, "d3dx9.lib" )

#endif

#pragma comment( lib, "d3d9.lib" )

#pragma comment( lib, "winmm.lib" )

#pragma comment( lib, "comctl32.lib" )

#endif



Answer this question

DirectX Sample Browser Oct2005 SCRIPTING sample PROBLEMS!!!