I have multiple CmakeLists.txt in my project and I'd like to enable iwyu
.
Adding
set_property(
TARGETS MY-TARGET
PROPERTY CXX_INCLUDE_WHAT_YOU_USE ${iwyu_path}
)
would enable it for one target. I'd like to enable it for every target to avoid redundancy in another file.cmake I include in the CMakeLists.txt which already exists.
The "documentation" can be found here: CMAKE_<LANG>_INCLUDE_WHAT_YOU_USE