https://github.com/Kitware/CMake
Revision 676ed21c66b7e4297f655110e2164ff22916127c authored by Bill Hoffman on 30 October 2006, 14:17:00 UTC, committed by Bill Hoffman on 30 October 2006, 14:17:00 UTC
1 parent bf29553
Raw File
Tip revision: 676ed21c66b7e4297f655110e2164ff22916127c authored by Bill Hoffman on 30 October 2006, 14:17:00 UTC
ENH: move from main tree
Tip revision: 676ed21
FindGnuplot.cmake
# - this module looks for gnuplot
#

INCLUDE(FindCygwin)

FIND_PROGRAM(GNUPLOT
  NAMES 
  gnuplot
  pgnuplot
  wgnupl32
  PATH
  ${CYGWIN_INSTALL_PATH}/bin
  /bin
  /usr/bin 
  /usr/local/bin
  /sbin
)
MARK_AS_ADVANCED(
  GNUPLOT
)
back to top