/usr/lib/cmake/Grantlee5/Grantlee5Config.cmake is in libgrantlee5-dev 5.0.0-0ubuntu4.
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 | # Grantlee CMake configuration file - http://www.grantlee.org/
# Any changes in this file will be overwritten by CMake.
if (Grantlee5_FIND_COMPONENTS)
foreach( component ${Grantlee5_FIND_COMPONENTS})
if (component STREQUAL "Textdocument")
set(RequiredQtComponents ${RequiredQtComponents} Gui)
endif()
if (component STREQUAL "Templates")
set(RequiredQtComponents ${RequiredQtComponents} Core)
endif()
endforeach()
find_package(Qt5 REQUIRED ${RequiredQtComponents})
else()
find_package(Qt5Gui REQUIRED)
endif()
include("${CMAKE_CURRENT_LIST_DIR}/GrantleeTargets.cmake")
include("${CMAKE_CURRENT_LIST_DIR}/GrantleeMacros.cmake")
|