I am including a complicated project as a library in C++ using Visual Studio 2008.
I have a set of include files that are scattered throughout a very complicated directory tree structure. The root of the tree has around ten directories, and then each directory could have multiple subdirectories, subsubdirectories, etc.
I know that all the header files in that structure are necessary, and they are hopelessly interlinked; I can’t just include one directory, because then dependencies in another directory will feel left out and cause the compiler to crash in their annoyance at not being invited to the party. So, everyone has to be included.
I can do this by adding the directories one at a time to the project (right click->properties->additional include directories), but that can be fraught with pain, especially when one of the dependencies has children and makes a brand new subsubsubdirectory.
Is there a way to specify an include directory in a header file itself, so that I can just include that header whenever I need to use the functions it contains? That way, I get an easier way to edit the include files, and I don’t have to make sure that the debug and release versions agree with each other (since the properties right click defaults to the current build, not all builds, a feature that has led to much crashing when switching from debug to release). Even better, is there a way to point to the directory root and force everything to be recursively included?
EDIT for all those replies so far:
I cannot edit the structure of this project. I can only link to it. I don’t like the way the code is organized anymore than anyone else seems to, but I have to work within this constraint. Rather than spending potentially hours in the error-prone process of finding all the interdependencies and putting them in a project file, is there a way to do this programmatically?
That’s clearly not a good idea, really.
These directories are a way to organize the code in logical groups.
Now if I type
What the heck am I trying to include ? Where’s that file ? How can I see its content ?
On the other hand if I type
Then it’s perfectly clear. (and I just have two includes -Iweb/include -Ilocal/include)
And this way, I can have multiple files that have the exact same name and there would be no ambiguity, nifty when you wish to integrate two different 3rd party libraries which both have such a ‘exception.h’.
Also note that for clarity, the namespace nesting should reflect the directories organization. So that
This way it’s easy to think of what header you have to include when you want a class.
Also note that, for example if you look at boost, they put headers for ‘lazy’ programmers, in each directory, which include the headers of all subdirectories
These includes might also ‘pull’ names into a more generic namespace with a using directive:
To make it less painful for developers.
So as you can see, the language already provide you with a very good way of organizing your code cleanly, if you go with the ‘all includes’ options, you’ll just end up with an unmaintainable mess:
I’ve had some of these at work… think 20 unqualified includes when you depend on 25+ components… now, do you think that it would be possible to remove a dependency on component X ? 😉
EDIT: How to deal with 3rd party library ?
Sometimes a 3rd party library does not live up to your expectations, whether it is:
you always have the opportunity to wrap them in headers of your own.
For example, say I have:
And anytime you wish to include a file, you have to include ‘exception.h’ BEFORE and ‘mustInclude.h’, and of course you have the problem that it is difficult to spot that the files included come from this 3rd party library and not your own (current) project.
Well, just wrap:
And then in your code:
You have just isolated the problem, and all the difficulty now lies within your wrappers files.
Note: I just realize that you may have the problem that the 3rd party headers reference each others without taking the ‘relative path’ into account, in this case, you can still avoid the ‘multiple include’ syndroms (even without edition), but that might be ill-fated.
I suppose you don’t have the opportunity not to use such crap 😡 ?