This file is indexed.

/usr/lib/gdcm-2.0/GDCMConfigVersion.cmake is in libgdcm2-dev 2.0.18-7.

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
# Test config file.
# Version number
SET( GDCM_MAJOR_VERSION "2")
SET( GDCM_MINOR_VERSION "0")
SET( GDCM_BUILD_VERSION "18")
SET( GDCM_VERSION       "2.0.18")

SET(PACKAGE_VERSION "${GDCM_VERSION}")
IF("${PACKAGE_FIND_VERSION}" STREQUAL "")
  # User did not request any particular version
  SET(PACKAGE_VERSION_COMPATIBLE 1)
ELSEIF("${PACKAGE_FIND_VERSION}" VERSION_EQUAL "${PACKAGE_VERSION}")
  # User did request exactly this version
  SET(PACKAGE_VERSION_COMPATIBLE 1)
  SET(PACKAGE_VERSION_EXACT 1)
ELSEIF("${PACKAGE_FIND_VERSION}" VERSION_LESS "${PACKAGE_VERSION}")
  # User requested an older version
  SET(PACKAGE_VERSION_COMPATIBLE 1)
ELSE()
  MESSAGE("REQUESTING: [${PACKAGE_FIND_VERSION}] but found: ${PACKAGE_VERSION}")
ENDIF()