There is any Doxygen version that works with Qt creator 2.6.81?
- I have built Qt 4.8.4 (mingw-builds 64bit) and Qt creator 2.6.81
Thanks!
There is any Doxygen version that works with Qt creator 2.6.81?
Thanks!
Try to use Doxygen in QMAKE_EXTRA_TARGETS
. In your .pro
fle, write this :
gendoc.target = gendoc
gendoc.command = doxygen doxygenfile.sthg
QMAKE_EXTRA_TARGETS += gendoc
If you want to generate your documentation, use the makefile target that you have created with these 3 lines.
make gendoc
You can also do this with a custom build configuration (in the "Projects" tab of Qt Creator) and use it with Qt Creator :
Doxygen and Qt Creator are independant in these case so it should work.