/usr/lib/cmake/KDeclarative/KDeclarativeConfig.cmake is in kdelibs5-dev 4:4.14.2-5+deb8u2.
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 | # - Config file for the KDeclarative package
# It defines the following variables
# KDECLARATIVE_INCLUDE_DIRS - include directories for KDeclarative
# KDECLARATIVE_LIBRARIES - libraries to link against
set(KDECLARATIVE_FOUND true)
# Compute paths
get_filename_component(KDECLARATIVE_CMAKE_DIR "${CMAKE_CURRENT_LIST_FILE}" PATH)
get_filename_component(KDECLARATIVE_PREFIX ${KDECLARATIVE_CMAKE_DIR}/ ABSOLUTE)
if(EXISTS "${KDECLARATIVE_CMAKE_DIR}/CMakeCache.txt")
# In build tree
set(KDECLARATIVE_INCLUDE_DIRS "/build/kde4libs-PycRYD/kde4libs-4.14.2/experimental/libkdeclarative")
else()
set(KDECLARATIVE_INCLUDE_DIRS "/usr/include")
endif()
# Our library dependencies (contains definitions for IMPORTED targets)
include("${KDECLARATIVE_CMAKE_DIR}/KDeclarativeLibraryTargets.cmake")
# These are IMPORTED targets created by KDeclarativeLibraryDepends.cmake
set(KDECLARATIVE_LIBRARIES kdeclarative)
|