Comment #4 on issue 1282 by naeimeh69: can iwyu ignore certain headers?
https://github.com/include-what-you-use/include-what-you-use/issues/1282
@kimgr
For example in my library I have a header file called my_lib.h. This header file included date_generators.hpp from boost library and inside CmakeList.txt I have include boot as a sub_directory.
What I expect from iwyu is only analyzing my_lib.h. But what iwyu do is that it analyzes boost header files as well, e.x.
The full include-list for external/boost/include/boost/date_time/date_generators.hpp should add these lines:
The full include-list for /external/boost/include/boost/date_time/gregorian/greg_weekday.hpp:
I think @swiesheier wants to exclude boost from iwyu analysis. This is what I'm looking for it as well. Am I right @swiesheier?