Revision 1bb8bec5c16cfeb35bea58e621e1bdf4ae7ceb7b authored by Bill Hoffman on 13 July 2008, 21:55:25 UTC, committed by Bill Hoffman on 13 July 2008, 21:55:25 UTC
1 parent b7e5326
Raw File
FindGnuplot.cmake
# - this module looks for gnuplot
#
# Once done this will define
#
#  GNUPLOT_FOUND - system has Gnuplot
#  GNUPLOT_EXECUTABLE - the Gnuplot executable

INCLUDE(FindCygwin)

FIND_PROGRAM(GNUPLOT_EXECUTABLE
  NAMES 
  gnuplot
  pgnuplot
  wgnupl32
  PATHS
  ${CYGWIN_INSTALL_PATH}/bin
)

# for compatibility
SET(GNUPLOT ${GNUPLOT_EXECUTABLE})

# handle the QUIETLY and REQUIRED arguments and set GNUPLOT_FOUND to TRUE if 
# all listed variables are TRUE
INCLUDE(FindPackageHandleStandardArgs)
FIND_PACKAGE_HANDLE_STANDARD_ARGS(Gnuplot DEFAULT_MSG GNUPLOT_EXECUTABLE)

MARK_AS_ADVANCED( GNUPLOT_EXECUTABLE )

back to top