diff options
-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 |