according to this link Xcode 5 should be able to interpret doxygen-like documentation, and make them show up in quick help. A similar question was already asked here, however there was no info on what to do if it doesn't work.
I'm working on an external c++ makefile project, using Xcode only to make coding and debugging easier. The project is compiling and running correctly. I'm using a framework called COIN-BCP, which is fully doxygen documented. I can also create the doxygen html documentation from the terminal, it works fine. However, in the quick help in Xcode it doesn't show up
My questions are:
- Do I have to turn on any extra settings in Xcode to make this work?
- Does the makefile project have anything to do with the problem? I'm not exactly sure when Xcode is supposed to interpret the doxygen comments. During compilation?
- Does anyone have a working makefile project, where the quick help documentation works?
- Any suggestions how I could fix this? Also, I'd be happy to try any workarounds.
Thanks in advance!