summaryrefslogtreecommitdiffstats
path: root/Modules/FindGnuplot.cmake
blob: 5e3babcbbdd10e7eda61fa837306420051173152 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# - 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
)