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.
35 lines
1.4 KiB
35 lines
1.4 KiB
9 years ago
|
# - 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
|
||
|
#
|
||
|
# SYSSTAT_INCLUDE_DIR - The lxqt include directory
|
||
|
#
|
||
|
# SYSSTAT_INCLUDE_DIRS - The lxqt and the Qt include directory, for use with INCLUDE_DIRECTORIES()
|
||
|
#
|
||
|
# SYSSTAT_LIBRARY_DIRS - The lxqt and the Qt library directory
|
||
|
#
|
||
|
# SYSSTAT_LIBRARIES - The libraries needed to use lxqt
|
||
|
#
|
||
|
# SYSSTAT_USE_FILE - The variable SYSSTAT_USE_FILE is set which is the path to a CMake file that
|
||
|
# can be included to compile lxqt applications and libraries. It sets up
|
||
|
# the compilation environment for include directories and populates a
|
||
|
# SYSSTAT_LIBRARIES variable.
|
||
|
|
||
|
set(SYSSTAT_MAJOR_VERSION @MAJOR_VERSION@)
|
||
|
set(SYSSTAT_MINOR_VERSION @MINOR_VERSION@)
|
||
|
set(SYSSTAT_PATCH_VERSION @PATCH_VERSION@)
|
||
|
set(SYSSTAT_VERSION @SYSSTAT_VERSION@)
|
||
|
|
||
|
set(SYSSTAT_INCLUDE_DIR @SYSSTAT_INCLUDE_DIR@)
|
||
|
set(SYSSTAT_LIBRARY @SYSSTAT_LIBRARY_NAME@)
|
||
|
|
||
|
set(SYSSTAT_LIBRARIES ${SYSSTAT_LIBRARY})
|
||
|
set(SYSSTAT_INCLUDE_DIRS "${SYSSTAT_INCLUDE_DIR}")
|
||
|
set(SYSSTAT_LIBRARY_DIRS @CMAKE_INSTALL_PREFIX@/@LIB_INSTALL_DIR@)
|
||
|
set(SYSSTAT_USE_FILE "${CMAKE_CURRENT_LIST_DIR}/sysstat_use.cmake")
|
||
|
set(SYSSTAT_FOUND 1)
|
||
|
|
||
|
mark_as_advanced(SYSSTAT_LIBRARY SYSSTAT_INCLUDE_DIR)
|