This file is indexed.

/usr/lib/x86_64-linux-gnu/cmake/Shiboken-1.2.2/ShibokenConfig.cpython-34m.cmake is in libshiboken-dev 1.2.2-1+b1.

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
#  SHIBOKEN_INCLUDE_DIR        - Directories to include to use SHIBOKEN
#  SHIBOKEN_LIBRARY            - Files to link against to use SHIBOKEN
#  SHIBOKEN_BINARY             - Executable name
#  SHIBOKEN_BUILD_TYPE         - Tells if Shiboken was compiled in Release or Debug mode.
#  SHIBOKEN_PYTHON_INTERPRETER - Python interpreter (regular or debug) to be used with the bindings.
#  SHIBOKEN_PYTHON_LIBRARIES   - Python libraries (regular or debug) Shiboken is linked against.

SET(SHIBOKEN_INCLUDE_DIR "/usr/include/shiboken")
if(MSVC)
    SET(SHIBOKEN_LIBRARY "/usr/lib/x86_64-linux-gnu/libshiboken.cpython-34m.lib")
elseif(CYGWIN)
    SET(SHIBOKEN_LIBRARY "/usr/lib/x86_64-linux-gnu/shiboken.cpython-34m")
elseif(WIN32)
    SET(SHIBOKEN_LIBRARY "/usr/bin/libshiboken.cpython-34m.so")
else()
    SET(SHIBOKEN_LIBRARY "/usr/lib/x86_64-linux-gnu/libshiboken.cpython-34m.so")
endif()
SET(SHIBOKEN_PYTHON_INCLUDE_DIR "/usr/include/python3.4m;/usr/include/python3.4m")
SET(SHIBOKEN_PYTHON_INCLUDE_DIR "/usr/include/python3.4m;/usr/include/python3.4m")
SET(SHIBOKEN_PYTHON_INTERPRETER "/usr/bin/python3.4m")
SET(SHIBOKEN_PYTHON_LIBRARIES "/usr/lib/x86_64-linux-gnu/libpython3.4m.so")
SET(SHIBOKEN_PYTHON_SUFFIX ".cpython-34m")
message(STATUS "libshiboken built for Release")


set(SHIBOKEN_BINARY "/usr/bin/shiboken")