File: sysstat-config.cmake.in

package info (click to toggle)
libsysstat 1.1.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 216 kB
  • sloc: cpp: 838; makefile: 7
file content (23 lines) | stat: -rw-r--r-- 667 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# - Find the sysstat include and library dirs and define a some macros
#
# The module defines the following variables
#
#  SYSSTAT_FOUND         - Set to TRUE if all of the above has been found


@PACKAGE_INIT@

set(SYSSTAT_MAJOR_VERSION @MAJOR_VERSION@)
set(SYSSTAT_MINOR_VERSION @MINOR_VERSION@)
set(SYSSTAT_PATCH_VERSION @PATCH_VERSION@)
set(SYSSTAT_VERSION       @SYSSTAT_VERSION@)

include(CMakeFindDependencyMacro)

find_dependency(Qt6Core @QT_MINIMUM_VERSION@)
if (NOT TARGET @SYSSTAT_LIBRARY_NAME@)
    if (POLICY CMP0024)
        cmake_policy(SET CMP0024 NEW)
    endif()
    include("${CMAKE_CURRENT_LIST_DIR}/@SYSSTAT_LIBRARY_NAME@-targets.cmake")
endif()