This file is indexed.

/usr/lib/KWWidgets/KWWidgetsConfig.cmake is in libkwwidgets1-dev 1.0.0~cvs20100930-8.

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
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
#-----------------------------------------------------------------------------
#
# KWWidgetsConfig.cmake - CMake configuration file for external projects.
#
# This file is configured by KWWidgets and used by the UseKWWidgets.cmake 
# module to load KWWidgets's settings for an external project.

# Compute the installation prefix from KWWidgets_DIR.
set(KWWidgets_INSTALL_PREFIX "${KWWidgets_DIR}")
GET_FILENAME_COMPONENT(KWWidgets_INSTALL_PREFIX "${KWWidgets_INSTALL_PREFIX}" PATH)
GET_FILENAME_COMPONENT(KWWidgets_INSTALL_PREFIX "${KWWidgets_INSTALL_PREFIX}" PATH)

# The KWWidgets version number.
set(KWWidgets_MAJOR_VERSION "1")
set(KWWidgets_MINOR_VERSION "0")
set(KWWidgets_PATCH_VERSION "0")

# The libraries.
set(KWWidgets_LIBRARIES "KWWidgets")

# The list of available languages.
set(KWWidgets_LANGUAGES "TCL")

# The CMake macros dir.
set(KWWidgets_CMAKE_DIR "${KWWidgets_INSTALL_PREFIX}/lib/KWWidgets/CMake")

# The configuration options.
set(KWWidgets_BUILD_SHARED_LIBS "ON")
set(KWWidgets_BUILD_TESTING "OFF")
set(KWWidgets_USE_HTML_HELP "")
set(KWWidgets_USE_INTERNATIONALIZATION "OFF")
set(KWWidgets_USE_INCR_TCL "OFF")
set(KWWidgets_BUILD_VTK_WIDGETS "ON")

# Installation options.
set(KWWidgets_INSTALL_BIN_DIR     "/bin")
set(KWWidgets_INSTALL_LIB_DIR     "/lib")
set(KWWidgets_INSTALL_DATA_DIR    "/share/KWWidgets")
set(KWWidgets_INSTALL_INCLUDE_DIR "/include/KWWidgets")
set(KWWidgets_INSTALL_PACKAGE_DIR "/lib/KWWidgets")

# The C and C++ flags added to the cmake-configured flags.
set(KWWidgets_REQUIRED_C_FLAGS 
  "")
set(KWWidgets_REQUIRED_CXX_FLAGS 
  "")
set(KWWidgets_REQUIRED_EXE_LINKER_FLAGS 
  "")
set(KWWidgets_REQUIRED_SHARED_LINKER_FLAGS 
  "")
set(KWWidgets_REQUIRED_MODULE_LINKER_FLAGS 
  "")

# The "use" file.
set(KWWidgets_USE_FILE "${KWWidgets_INSTALL_PREFIX}/lib/KWWidgets/UseKWWidgets.cmake")

# The build settings file.
set(KWWidgets_BUILD_SETTINGS_FILE "${KWWidgets_INSTALL_PREFIX}/lib/KWWidgets/KWWidgetsBuildSettings.cmake")

# The library directories.
set(KWWidgets_LIBRARY_DIRS "${KWWidgets_INSTALL_PREFIX}/lib")

# The runtime directories.
# Note that if KWWidgets_CONFIGURATION_TYPES is set (see below) then
# these directories will be the parent directories under which there will
# be a directory of runtime binaries for each configuration type.
set(KWWidgets_RUNTIME_DIRS "${KWWidgets_INSTALL_PREFIX}/lib")

# The include directories.
set(KWWidgets_INCLUDE_DIRS "${KWWidgets_INSTALL_PREFIX}/include/KWWidgets")

# The library dependencies file.
if(NOT KWWidgets_NO_LIBRARY_DEPENDS AND
    EXISTS "${KWWidgets_INSTALL_PREFIX}/lib/KWWidgets/KWWidgetsLibraryDepends.cmake")
  include("${KWWidgets_INSTALL_PREFIX}/lib/KWWidgets/KWWidgetsLibraryDepends.cmake")
endif(NOT KWWidgets_NO_LIBRARY_DEPENDS AND
  EXISTS "${KWWidgets_INSTALL_PREFIX}/lib/KWWidgets/KWWidgetsLibraryDepends.cmake")

# The examples dir.
set(KWWidgets_EXAMPLES_DIR "${KWWidgets_INSTALL_PREFIX}/share/KWWidgets/Examples")

# The templates dir.
set(KWWidgets_TEMPLATES_DIR "${KWWidgets_INSTALL_PREFIX}/include/KWWidgets/Templates")

# The resources dir.
set(KWWidgets_RESOURCES_DIR "${KWWidgets_INSTALL_PREFIX}/share/KWWidgets/Resources")

# The Tcl/Tk options.
set(KWWidgets_TCL_PACKAGE_INDEX_DIR 
  "${KWWidgets_INSTALL_PREFIX}/lib/tcl")

# The Python options.
set(KWWidgets_PYTHON_MODULE_DIR
  "${KWWidgets_INSTALL_PREFIX}/lib/../python2.7/site-packages")

# The Doxygen options.
set(KWWidgets_DOXYGEN_DIR "${KWWidgets_INSTALL_PREFIX}")

# The VTK options.
set(KWWidgets_VTK_DIR "${KWWidgets_INSTALL_PREFIX}/lib/")

# The gettext library. This is only defined for build dirs to help projects
# find the gettext library (it is safe to assume we are on the same machine;
# we could not guarantee that if we are building against an installed 
# KWWidgets though).
set(GETTEXT_SEARCH_PATH ${GETTEXT_SEARCH_PATH} "")

# An install tree always provides one build configuration.
# A build tree may provide either one or multiple build
# configurations depending on the CMake generator used. Since
# this project can be used either from a build tree or an install tree it
# is useful for outside projects to know the configurations available.
# If this KWWidgetsConfig.cmake is in an install tree
# KWWidgets_CONFIGURATION_TYPES will be empty and KWWidgets_BUILD_TYPE
# will be set to the value of CMAKE_BUILD_TYPE used to build
# KWWidgets. If KWWidgetsConfig.cmake is in a build tree
# then KWWidgets_CONFIGURATION_TYPES and KWWidgets_BUILD_TYPE will
# have values matching CMAKE_CONFIGURATION_TYPES and CMAKE_BUILD_TYPE
# for that build tree (only one will ever be set).
set(KWWidgets_CONFIGURATION_TYPES )
set(KWWidgets_BUILD_TYPE )