mirror of
https://github.com/reactos/CMake.git
synced 2024-11-24 03:59:58 +00:00
21 lines
232 B
CMake
21 lines
232 B
CMake
# - 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
|
|
)
|