Ok I am in dire need of some help here :/
I downloaded Visual C++ 2005 express beta 2, and the Platform SDK.
I just chose to do a Win32 console application, chose to use the pre compiled header, and typed in the very simple code.
#include "stdafx.h" int _tmain(int argc, _TCHAR* argv[]) |
When I go to compile it, I get a compiler error saying:
Build started: Project: Hello World, Configuration: Debug Win32
Compiling...
Hello World.cpp
c:\documents and settings\owner\desktop\hello world\hello world.cpp(4) : fatal error C1083: Cannot open precompiled header file: 'Debug\Hello World.pch': No such file or directory
Build log was saved at "file://c:\Documents and Settings\Owner\Desktop\Hello World\Debug\BuildLog.htm"
Hello World - 1 error(s), 0 warning(s)
========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped ==========
Whats going on here? :/ What am I doing wrong.

