kde-workspace/cmake/modules/FindSensors.cmake
2014-11-13 19:30:51 +02:00

16 lines
518 B
CMake

# - Try to find the sensors directory library
# Once done this will define
#
# SENSORS_FOUND - system has SENSORS
# SENSORS_INCLUDE_DIR - the SENSORS include directory
# SENSORS_LIBRARIES - The libraries needed to use SENSORS
FIND_PATH(SENSORS_INCLUDE_DIR sensors/sensors.h)
FIND_LIBRARY(SENSORS_LIBRARIES NAMES sensors)
include(FindPackageHandleStandardArgs)
FIND_PACKAGE_HANDLE_STANDARD_ARGS(Sensors DEFAULT_MSG SENSORS_INCLUDE_DIR SENSORS_LIBRARIES )
MARK_AS_ADVANCED(SENSORS_INCLUDE_DIR SENSORS_LIBRARIES)