2005-12-14 21:51:08 +03:00
|
|
|
# - this module looks for gnuplot
|
2002-02-05 02:41:47 +03:00
|
|
|
#
|
2007-07-19 17:00:51 +04:00
|
|
|
# Once done this will define
|
|
|
|
#
|
|
|
|
# GNUPLOT_FOUND - system has Gnuplot
|
|
|
|
# GNUPLOT_EXECUTABLE - the Gnuplot executable
|
2002-02-05 02:41:47 +03:00
|
|
|
|
2004-08-27 06:52:53 +04:00
|
|
|
INCLUDE(FindCygwin)
|
2002-02-05 02:41:47 +03:00
|
|
|
|
2007-07-19 17:00:51 +04:00
|
|
|
FIND_PROGRAM(GNUPLOT_EXECUTABLE
|
2002-02-05 02:41:47 +03:00
|
|
|
NAMES
|
|
|
|
gnuplot
|
|
|
|
pgnuplot
|
|
|
|
wgnupl32
|
2007-07-19 17:00:51 +04:00
|
|
|
PATHS
|
2002-02-05 02:41:47 +03:00
|
|
|
${CYGWIN_INSTALL_PATH}/bin
|
|
|
|
)
|
2007-07-19 17:00:51 +04:00
|
|
|
|
|
|
|
# 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)
|
2007-07-23 17:49:52 +04:00
|
|
|
FIND_PACKAGE_HANDLE_STANDARD_ARGS(Gnuplot DEFAULT_MSG GNUPLOT_EXECUTABLE)
|
2007-07-19 17:00:51 +04:00
|
|
|
|
|
|
|
MARK_AS_ADVANCED( GNUPLOT_EXECUTABLE )
|
|
|
|
|