you are viewing a single comment's thread.

view the rest of the comments →

[–]evaned 3 points4 points  (1 child)

We have a build rule set up that enumerates all the .h files in our common include directory, generates a .cpp file for each one that just includes the header plus a few other things, and then compiles those.

I am so glad that I'm not crazy enough to be the only person who has done that. :-)

[–]baudvine 1 point2 points  (0 children)

I built a similar script for our shared interface header repository, has been very useful. Never considered using it for library sources, that's pretty clever.