diff options
author | Marius Kintel <marius@kintel.net> | 2013-05-09 16:48:27 (GMT) |
---|---|---|
committer | Marius Kintel <marius@kintel.net> | 2013-05-09 16:48:27 (GMT) |
commit | 7a8b6f5c516e43c1bb0a90eab3e662453d112b84 (patch) | |
tree | 1adead52e3be6e00456d0b25ccb0cced4995657c /openscad.pro | |
parent | e01b37a03d91b5d8cd12cc4ec7d7a453f20ec907 (diff) |
Put back lex/yacc - we're not using any bison-specific stuff after all
Diffstat (limited to 'openscad.pro')
-rw-r--r-- | openscad.pro | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/openscad.pro b/openscad.pro index 96a0a2a..a8f3d17 100644 --- a/openscad.pro +++ b/openscad.pro @@ -171,6 +171,13 @@ CONFIG(mingw-cross-env) { include(mingw-cross-env.pri) } +win32 { + FLEXSOURCES = src/lexer.l + BISONSOURCES = src/parser.y +} else { + LEXSOURCES += src/lexer.l + YACCSOURCES += src/parser.y +} FLEXSOURCES = src/lexer.l BISONSOURCES = src/parser.y |