/usr/lib/cmake/Libkolab/LibkolabConfig.cmake is in libkolab-dev 0.5.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 | get_filename_component(Libkolab_CMAKE_DIR ${CMAKE_CURRENT_LIST_FILE} PATH) #get the directory where this *Config.cmake file is installed
# set the version
set(Libkolab_VERSION_MAJOR 0)
set(Libkolab_VERSION_MINOR 5)
set(Libkolab_VERSION_PATCH 0)
set(Libkolab_VERSION ${Libkolab_VERSION_MAJOR}.${Libkolab_VERSION_MINOR}.${Libkolab_VERSION_PATCH} )
# Set the include directory
set(Libkolab_INCLUDES "${Libkolab_CMAKE_DIR}/../../../include/kolab")
# import the exported targets
include(${Libkolab_CMAKE_DIR}/LibkolabTargets.cmake)
# set the expected library variable
set(Libkolab_LIBRARIES kolab )
|