I used add_subdirectory() to integrate zlib into my CMake-controlled project. This works well, but there is the problem that git detects a "false update" and constantly asks me to commit a change that I didn't make.
Apparently, something in the build process renames zconf.h to zconf.h.included, so git detects the former as deleted and the latter as new.
Is there a way to work around that, or better yet, fix it ?