shewu / h4ck4th0n

Holy Balls: The Game
8 stars 2 forks source link

clean up .h pollution #48

Closed tjhance closed 9 years ago

tjhance commented 12 years ago

Right now lots of .cpp files are indirectly including .h files that they don't need, which is now a problem since cleaning this up can speed of compilation.

shewu commented 9 years ago

looks like there's clang -MM to get a list of includes for a cpp file.

shewu commented 9 years ago

oh, that's what clang -MF does, but writes to a file. from what I can tell by looking at the .d files, they seem to be including the minimum number of includes, so we can close this.