This file is indexed.

/usr/lib/cmake/libkomparediff2/LibKompareDiff2Config.cmake is in libkomparediff2-dev 4:4.13.0-0ubuntu1.

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
#########################################################################
#
# LibKompareDiff2 Configuration File
#
# This file sets various CMake Variables
#
# LIBKOMPAREDIFF2_INCLUDE_DIR                - The Include Directory for the LIBKOMPAREDIFF2  library
# LIBKOMPAREDIFF2_LIBRARIES                  - the libkomparediff2 library
#
# Copyright 2008  Andreas Pakulat <apaku@gmx.de>
# Copyright 2010  Niko Sams <niko.sams@gmail.com>
# Copyright 2013  Jeremy Whiting <jpwhiting@kde.org>
# Redistribution and use is allowed according to the terms of the BSD license.
######################################################################

get_filename_component(_LIBKOMPAREDIFF2_CURRENT_DIR  "${CMAKE_CURRENT_LIST_FILE}" PATH)

if(NOT WIN32)
# This is needed on non-win32 platforms, as lib-install-dir might be in a
# totally different prefix than include-install-dir. So instead hardcode the
# absolute path during buildtime
set( LIBKOMPAREDIFF2_INCLUDE_DIR "/usr/include/libkomparediff2" )

else(NOT WIN32)

set( LIBKOMPAREDIFF2_INCLUDE_DIR "${_LIBKOMPAREDIFF2_CURRENT_DIR}/../../../include/libkomparediff2" )

endif(NOT WIN32)

include("${CMAKE_CURRENT_LIST_DIR}/LibKompareDiff2Targets.cmake")
set( LIBKOMPAREDIFF2_LIBRARIES LibKompareDiff2Import__komparediff2)