Hi
I have to include many header files, which are in different sub-directories. Is there a way in Visual Studio (I am using 2005 edition) to set one include path that Visual Studio will search also the sub-directories for header files?
|
|
Hi I have to include many header files, which are in different sub-directories. Is there a way in Visual Studio (I am using 2005 edition) to set one include path that Visual Studio will search also the sub-directories for header files? |
|||
|
|
|
|
Setting the folder search paths in the Visual Studio settings to fix an include issue is generally not really a good idea from a design point of view. Your code will be less portable to different machines with different directory lay-outs. My suggestion would be to settle on an organisation of your code so that the relative paths of the sub-directories (relative to your including code) are fixed, add the "base folder" to the project (in the project settings, "additional include directories"), and add the subdirectories to the #include statements , i.e. #include "subdirectory/somefile.h". This has the added bonus of being able to see from which folder the file comes which is often useful information when you're trying to find your way around or trying to figure out what a file is for. |
|||
|
|
|
|
We haven't found a way of setting a recursive folder search in Visual Studio (though Xcode has no problem setting and using them). What we do is list all the directories in a file, and specify the file in the C/C++ Command Line additional options: @"IncludeFolders.rsp" We rarely find problems using recursive search, though an accidental inclusion of ``/'' did slow things down a bit once. |
||
|
|
|
|
I believe using recursive search for include files would cause so much more problems than it solves in a form of wrong files or wrong versions being included. After all, you have to define the right directories once when you set up the project. |
||
|
|