I am generating doxygen documentation for my (fairly small) project on each build. I did the following to accomplish this:
- Added the
index.html
, which doxygen generates, to the project - Specified a Custom Build Step for this file (not the whole project)
- Command line:
doxygen ../doc/Doxyfile
- Outputs:
..doc/html/index.html
- Additional Dependencies: '../bin/foo.exe'
- Command line:
The problem with this is, that I need to build twice until VS stops telling me that my project is out of date.
How can I fix this?