You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
627 B
23 lines
627 B
# - 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(Qt5Core @QT_MINIMUM_VERSION@)
|
|
|
|
if (CMAKE_VERSION VERSION_GREATER 2.8.12)
|
|
cmake_policy(SET CMP0024 OLD)
|
|
endif()
|
|
include("${CMAKE_CURRENT_LIST_DIR}/@SYSSTAT_LIBRARY_NAME@-targets.cmake")
|