summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNirbheek Chauhan <nirbheek@centricular.com>2017-11-24 02:44:11 +0530
committerNirbheek Chauhan <nirbheek@centricular.com>2018-03-10 19:05:19 +0530
commit31cac37d3678732c0643169ea8a3d0e8178c47cd (patch)
tree432a610cc022bbf5289cc6f6f93a58c5c9eee226
parente84c9e75efc9d82262a5ec6036cc737c6089ab30 (diff)
downloadgobject-introspection-31cac37d3678732c0643169ea8a3d0e8178c47cd.tar.gz
meson: Try to use win_flex and win_bison if available
These are the native windows versions of flex and bison.
-rw-r--r--giscanner/meson.build4
1 files changed, 2 insertions, 2 deletions
diff --git a/giscanner/meson.build b/giscanner/meson.build
index 5357ae52..5a92a169 100644
--- a/giscanner/meson.build
+++ b/giscanner/meson.build
@@ -41,8 +41,8 @@ endforeach
install_subdir('doctemplates', install_dir: giscannerdir)
-flex = find_program('flex')
-bison = find_program('bison')
+flex = find_program('flex', 'win_flex')
+bison = find_program('bison', 'win_bison')
scannerparser = custom_target('scannerparser',
input: 'scannerparser.y',