This file is indexed.

/usr/lib/cmake/paraview/FindGenericIO.cmake is in paraview-dev 5.0.1+dfsg1-4.

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
14
15
16
17
18
19
20
21
22
23
24
# - Try to find the GenericIO library
# Once done this will define
#
# GENERIC_IO_FOUND -- boolean that indicates whether GenericIO was found
# GENERIC_IO_INCLUDE_DIR -- the include path for GenericIO
# GENERIC_IO_LIBRARIES -- the GenericIO libraries to link against

## Try to find include directory
find_path(GENERIC_IO_INCLUDE_DIR
            NAMES GenericIO.h
            PATHS /usr/include /usr/local/include
            )

## Try to find the GenericIO library
find_library(GENERIC_IO_LIBRARIES
    NAMES GenericIO
    PATHS /usr/lib
    )

include(FindPackageHandleStandardArgs)
find_package_handle_standard_args(
    GenericIO DEFAULT_MSG GENERIC_IO_INCLUDE_DIR GENERIC_IO_LIBRARIES)
mark_as_advanced(GENERIC_IO_INCLUDE_DIR)
mark_as_advanced(GENERIC_IO_LIBRARIES)