diff options
Diffstat (limited to 'Modules/FindGnuplot.cmake')
-rw-r--r-- | Modules/FindGnuplot.cmake | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/Modules/FindGnuplot.cmake b/Modules/FindGnuplot.cmake new file mode 100644 index 0000000..943c8a4 --- /dev/null +++ b/Modules/FindGnuplot.cmake @@ -0,0 +1,21 @@ +# +# this module looks for gnuplot +# + +INCLUDE(${CMAKE_ROOT}/Modules/FindCygwin.cmake) + +FIND_PROGRAM(GNUPLOT + NAMES + gnuplot + pgnuplot + wgnupl32 + PATH + ${CYGWIN_INSTALL_PATH}/bin + /bin + /usr/bin + /usr/local/bin + /sbin +) +MARK_AS_ADVANCED( + GNUPLOT +) |