This file is indexed.

/usr/share/cmake-2.8/Modules/FindQCustomPlot.cmake is in libqcustomplot-dev 1.1.0-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
14
15
16
17
18
19
# Try to find the QCustomPlot librairies
#  QCustomPlot_FOUND - system has QCustomPlot lib
#  QCustomPlot_INCLUDE_DIR - the GMP include directory
#  QCustomPlot_LIBRARIES - Libraries needed to use QCustomPlot

# Copyright (c) 2013, Anton Gladky <gladk@debian.org>
#
# Redistribution and use is allowed according to the terms of the GPL-3 license.


IF (QCustomPlot_INCLUDE_DIR AND QCustomPlot_LIBRARIES)
  SET(QCustomPlot_FIND_QUIETLY TRUE)
ENDIF (QCustomPlot_INCLUDE_DIR AND QCustomPlot_LIBRARIES)

FIND_PATH(QCustomPlot_INCLUDE_DIR NAMES qcustomplot.h )
FIND_LIBRARY(QCustomPlot_LIBRARIES NAMES qcustomplot )

include(FindPackageHandleStandardArgs)
FIND_PACKAGE_HANDLE_STANDARD_ARGS(QCustomPlot DEFAULT_MSG QCustomPlot_INCLUDE_DIR QCustomPlot_LIBRARIES)