summaryrefslogtreecommitdiff
path: root/cmake/modules/FindLEX.cmake
blob: 31033f23cac5e0e92f4cd87bc0ed8eaf2a5a2227 (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(LEX
  NAMES 
  lex
  flex
  PATH
  ${CYGWIN_INSTALL_PATH}/bin
  /bin
  /usr/bin 
  /usr/local/bin
  /sbin
)
MARK_AS_ADVANCED(
  LEX
)