FindGnuplot.cmake 261 B

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