mirror of
https://github.com/reactos/CMake.git
synced 2024-12-04 09:54:15 +00:00
22 lines
261 B
CMake
22 lines
261 B
CMake
#
|
|
# 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
|
|
)
|