I have a git repository for my project, and I'd like to add a Doxyfile
in the repo so that anyone working on the project can create a directory on their computer and simply run doxygen /path/to/the/repo/Doxyfile
from there to fill it with the project's documentation.
I've been looking at https://www.doxygen.nl/manual/config.html for a while, but I just can't find how to fill the INPUT
field to tell doxygen where the files are.
- I can't use absolute paths since I don't know where people will clone the repo on their machine
- I can't use relative paths since they are relative to where the command is run and I don't know where people want to put their documentation
How do I express paths relative to the Doxyfile
(or maybe to the repo's location since that's the next best thing)?