FindGnuplot.cmake 232 B

1234567891011121314151617181920
  1. # - this module looks for gnuplot
  2. #
  3. INCLUDE(FindCygwin)
  4. FIND_PROGRAM(GNUPLOT
  5. NAMES
  6. gnuplot
  7. pgnuplot
  8. wgnupl32
  9. PATH
  10. ${CYGWIN_INSTALL_PATH}/bin
  11. /bin
  12. /usr/bin
  13. /usr/local/bin
  14. /sbin
  15. )
  16. MARK_AS_ADVANCED(
  17. GNUPLOT
  18. )