aboutsummaryrefslogtreecommitdiffstats
path: root/cmake/modules/FindYACC.cmake
blob: 31499224fc7f89b4d88da450b95e026d5e27d377 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# - Find unix commands from cygwin
# This module looks for some usual Unix commands.
#

INCLUDE(FindCygwin)

FIND_PROGRAM(YACC
  NAMES 
  yacc
  bison
  PATH
  ${CYGWIN_INSTALL_PATH}/bin
  /bin
  /usr/bin 
  /usr/local/bin
  /sbin
)
MARK_AS_ADVANCED(
  YACC
)