up vote 9 down vote favorite
share [g+] share [fb]

Okay, C++ newbie question here. I checked out a copy of a C++ application from SourceForge (HoboCopy, if you're curious) and tried to compile it, but Visual Studio tells me that it can't find a particular header file. I found the file in the source tree, but where do I need to put it so that it will be found when compiling? Are there special directories?

link|improve this question

feedback

2 Answers

up vote 15 down vote accepted

Visual Studio looks for headers in this order

  • in the current source directory
  • in the Additional Include Directories in the project properties. (Under C++ | General)
  • in the Visual Studio C++ Include directories under Tools | Options | Projects and Solutions | VC++ Directories.

In your case, add the directory that the header is in to the project properties.

link|improve this answer
Nice answer, but I must add, that in Visual Studio 2003, you should look at "Tools | Options | VC++ Directories" not "Tools | Options | Projects and Solutions | VC++ Directories". – Graf Nov 25 '10 at 18:27
2  
the preprocessor in VS 2010 looks into the current dir only if the quoted include syntax is used (e.g #include "whatever.h"). Using angle brackets (e.g #include <whatever.h>) omits the current dir ( msdn.microsoft.com/en-us/library/36k2cdd4(v=VS.100).aspx ) – Dennis Knochenwefel Jun 21 '11 at 11:35
feedback

If the project came with a Visual Studio project file, then that should already be configured to find the headers for you. If not, you'll have to add the include file directory to the project settings by right-clicking the project and selecting Properties, clicking on "C/C++", and adding the directory containing the include files to the "Additional Include Directories" edit box.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.