Problem with running CUDA on emulation mode in VC++2005

HI,
I have tried running emulator on VC++ 2005 as I dont have a graphics card installed on my machine. And also I have heard that the debugging facility on VC++2005 is very useful.

after configuring everything I am getting this error message
1>LINK : fatal error LNK1181: cannot open input file ‘.\Debug\example1.obj’

can anyone please tell me the if there is any exact step by step procedure available to configure CUDA and VC++2005.

with regards
chetan

i use the following custom bulid command string:

“$(CUDA_BIN_PATH)\nvcc.exe” -ccbin “$(VCInstallDir)bin” -deviceemu -c -D_DEBUG -DWIN32 -D_CONSOLE -D_MBCS -Xcompiler /EHsc,/W3,/nologo,/Wp64,/Od,/Zi,/MTd -I “$(CUDA_INC_PATH)” -o $(ConfigurationName)\example1.obj example1.cu

then remove the #include “stdafx.h” from example.cu source file.

these steps remove the above error in mine case.