1 # - this module looks for gnuplot
3 # Once done this will define
5 # GNUPLOT_FOUND - system has Gnuplot
6 # GNUPLOT_EXECUTABLE - the Gnuplot executable
10 FIND_PROGRAM(GNUPLOT_EXECUTABLE
16 ${CYGWIN_INSTALL_PATH}/bin
20 SET(GNUPLOT ${GNUPLOT_EXECUTABLE})
22 # handle the QUIETLY and REQUIRED arguments and set GNUPLOT_FOUND to TRUE if
23 # all listed variables are TRUE
24 INCLUDE(FindPackageHandleStandardArgs)
25 FIND_PACKAGE_HANDLE_STANDARD_ARGS(Gnuplot DEFAULT_MSG GNUPLOT_EXECUTABLE)
27 MARK_AS_ADVANCED( GNUPLOT_EXECUTABLE )