This file is indexed.

/usr/lib/x86_64-linux-gnu/cmake/QtGStreamer/QtGStreamerConfigCommon.cmake is in libqtgstreamer-dev 1.2.0-3.

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
set(QTGLIB_LIBRARIES ${QTGLIB_LIBRARY})
set(QTGSTREAMER_LIBRARIES ${QTGSTREAMER_LIBRARY})
set(QTGSTREAMER_UI_LIBRARIES ${QTGSTREAMER_UI_LIBRARY})
set(QTGSTREAMER_UTILS_LIBRARIES ${QTGSTREAMER_UTILS_LIBRARY})
set(QTGSTREAMER_INCLUDES ${QTGSTREAMER_INCLUDE_DIR} ${Boost_INCLUDE_DIRS})
set(QTGSTREAMER_DEFINITIONS "-DQT_NO_KEYWORDS")

if (${QTGSTREAMER_LIBRARY} MATCHES ".*Qt5GStreamer.*")
    set(QTGSTREAMER_QUICK_LIBRARIES ${QTGSTREAMER_QUICK_LIBRARY})
    set(QTGSTREAMER_INCLUDES ${QTGSTREAMER_INCLUDES} ${Qt5Core_INCLUDE_DIRS})
else()
    set(QTGSTREAMER_INCLUDES ${QTGSTREAMER_INCLUDES} ${QT_INCLUDE_DIR})
endif()

if (CMAKE_COMPILER_IS_GNUCXX)
    execute_process(COMMAND ${CMAKE_CXX_COMPILER} "-dumpversion"
                    RESULT_VARIABLE _GCC_DUMPVERSION_RESULT
                    OUTPUT_VARIABLE _GCC_VERSION
                    ERROR_QUIET
                    OUTPUT_STRIP_TRAILING_WHITESPACE)

    if ((${_GCC_DUMPVERSION_RESULT} EQUAL 0)
        AND (${_GCC_VERSION} VERSION_GREATER 4.4.99)
        AND (NOT QTGSTREAMER_DISABLE_CXX0X))

        if (NOT QTGSTREAMER_FLAGS) # be quiet if we try to find QtGStreamer multiple times
            message(STATUS "GCC 4.5 or later detected. Enabling C++0x support in QTGSTREAMER_FLAGS.")
        endif()
        set(QTGSTREAMER_FLAGS "-std=c++0x")
    endif()
endif()