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