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
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.