Put back lex/yacc - we're not using any bison-specific stuff after all

felipesanches-svg
Marius Kintel 2013-05-09 18:48:27 +02:00
parent e01b37a03d
commit 7a8b6f5c51
1 changed files with 7 additions and 0 deletions

View File

@ -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