Click here to Skip to main content
15,900,438 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I'm new one for Visual C++ 6.0.

In my visual C++ Application i found the below error when i "Re-BuittAll"
ERROR:i>
D:\New Folder\Source1\windward.h(25) : fatal error C1083: Cannot open include file: 'games.h': No such file or directory


But the games.h file is within the project folder only.

Please help me some one......

Thanks in advance......!
Posted
Comments
Richard MacCutchan 10-Aug-13 9:57am    
Check the project properties and look at the directories for the compiler includes and make sure that the header file is in one of those locations.

Please, use Google[^]. There are tons of advices related to your issue.
 
Share this answer
 
Yes, check the project settings for "include paths".
One quirk I used to find is that if you have any "include paths" specified in your project, you may have to add the project's path itself by adding a reference to the current directory (a path of a single dot, "."). I would put this as the first include path so that any includes specifically for your project are used instead of any that happen to have the same name in any of the other included paths (although you should try to avoid that situation).

Regards,
Ian.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900