https://github.com/Kitware/CMake
Raw File
Tip revision: 0846bdba097621b8982b73923c18e1b2fb6370eb authored by Bill Hoffman on 16 July 2007, 14:59:29 UTC
ENH: final 2.4.7 commit
Tip revision: 0846bdb
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