FindGnuplot.cmake 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. #.rst:
  2. # FindGnuplot
  3. # -----------
  4. #
  5. # this module looks for gnuplot
  6. #
  7. #
  8. #
  9. # Once done this will define
  10. #
  11. # ::
  12. #
  13. # GNUPLOT_FOUND - system has Gnuplot
  14. # GNUPLOT_EXECUTABLE - the Gnuplot executable
  15. # GNUPLOT_VERSION_STRING - the version of Gnuplot found (since CMake 2.8.8)
  16. #
  17. #
  18. #
  19. # GNUPLOT_VERSION_STRING will not work for old versions like 3.7.1.
  20. #=============================================================================
  21. # Copyright 2002-2009 Kitware, Inc.
  22. #
  23. # Distributed under the OSI-approved BSD License (the "License");
  24. # see accompanying file Copyright.txt for details.
  25. #
  26. # This software is distributed WITHOUT ANY WARRANTY; without even the
  27. # implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  28. # See the License for more information.
  29. #=============================================================================
  30. # (To distribute this file outside of CMake, substitute the full
  31. # License text for the above reference.)
  32. include(${CMAKE_CURRENT_LIST_DIR}/FindCygwin.cmake)
  33. find_program(GNUPLOT_EXECUTABLE
  34. NAMES
  35. gnuplot
  36. pgnuplot
  37. wgnupl32
  38. PATHS
  39. ${CYGWIN_INSTALL_PATH}/bin
  40. )
  41. if (GNUPLOT_EXECUTABLE)
  42. execute_process(COMMAND "${GNUPLOT_EXECUTABLE}" --version
  43. OUTPUT_VARIABLE GNUPLOT_OUTPUT_VARIABLE
  44. ERROR_QUIET
  45. OUTPUT_STRIP_TRAILING_WHITESPACE)
  46. string(REGEX REPLACE "^gnuplot ([0-9\\.]+)( patchlevel )?" "\\1." GNUPLOT_VERSION_STRING "${GNUPLOT_OUTPUT_VARIABLE}")
  47. string(REGEX REPLACE "\\.$" "" GNUPLOT_VERSION_STRING "${GNUPLOT_VERSION_STRING}")
  48. unset(GNUPLOT_OUTPUT_VARIABLE)
  49. endif()
  50. # for compatibility
  51. set(GNUPLOT ${GNUPLOT_EXECUTABLE})
  52. # handle the QUIETLY and REQUIRED arguments and set GNUPLOT_FOUND to TRUE if
  53. # all listed variables are TRUE
  54. include(${CMAKE_CURRENT_LIST_DIR}/FindPackageHandleStandardArgs.cmake)
  55. FIND_PACKAGE_HANDLE_STANDARD_ARGS(Gnuplot
  56. REQUIRED_VARS GNUPLOT_EXECUTABLE
  57. VERSION_VAR GNUPLOT_VERSION_STRING)
  58. mark_as_advanced( GNUPLOT_EXECUTABLE )