Skip to content
FindGperf.cmake 538 B
Newer Older
# This module looks for gperf. This module defines the
# following values:
#  GPERF_EXECUTABLE: the full path to the gperf tool.
#  GPERF_FOUND: True if gperf has been found.

find_program(GPERF_EXECUTABLE
# handle the QUIETLY and REQUIRED arguments and set GPERF_FOUND to TRUE if
# all listed variables are TRUE
include(FindPackageHandleStandardArgs)
FIND_PACKAGE_HANDLE_STANDARD_ARGS(Gperf DEFAULT_MSG GPERF_EXECUTABLE)

mark_as_advanced(GPERF_EXECUTABLE)