Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to integrate flex and bison with Qt project?

I am making a GUI program using Qt4, under git source control (Github page). Small part of project requires scanning and parsing. So I want to use flex and bison with the project. I can think of 3 ways-

  1. To keep flex and bison files out of project and source control. Generate the C source files and add it to project.
  2. Add flex and bison files to project, but run flex and bison commands separately.
  3. Integrate properly with IDE (Qt Creator on Ubuntu 12.04) and source control, so that when I build the flex and bison is called to generate lexer and parser.

I obviously want third option, but have no idea how to do it.

Please suggest the best option and the way to do it. Or there is any other way to do it?

Note - I want the project to be cross platform, to build for Windows as well.

like image 792
Vinayak Garg Avatar asked Oct 05 '22 07:10

Vinayak Garg


1 Answers

By following the link in @Bort's comment I was able to integrate Flex and Bison with my Qt project nicely. I added custom build steps in project settings. Below is the screenshot in Qt Creator.

enter image description here

I asked a related question for this - Undefined reference error even though the functions are present

like image 183
Vinayak Garg Avatar answered Oct 12 '22 09:10

Vinayak Garg