This file is indexed.

/usr/share/dune/cmake/scripts/FinalizeHeadercheck.cmake is in libdune-common-dev 2.4.1-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
# this is script is called at the end of all header checks
if(ENABLE_HEADERCHECK)
  message("Headerchecks finished! Rerun CMake if a new file has not been checked!")
else()
  message("The headercheck feature is currently disabled. You can enable it by adding ENABLE_HEADERCHECK=1 to your cmake flags.")
endif()

#message("Running make clean on headercheck targets...")
#this cleans the build directory from pollution through headerchecks but prevents caching... :/
#file(GLOB_RECURSE list "./CMakeFiles/headercheck_*/cmake_clean.cmake")
#foreach(item ${list})
 # execute_process(COMMAND ${CMAKE_COMMAND} -P ${item})
#endforeach()