Is there a simple way for integrating Bison/Flex/Yacc into XCode?
I want to write my own language to be parsed, which interacts with my ObjC objects.
But the tools will only take STDIN as input, and will only produce C code, instead of ObjC. They're basically only seem useful for command-line tools, otherwise they need massive pain to override the output every time I regenerate the parser code.
See Question&Answers more detail:os