Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Do Doxygen config files support variables?

Tags:

For instance I set the source code path as c:\code\testapp\src. Is this then available as a var I can use - for instance so I can spit out a tag file in a location relative to this, not relative to the working dir of doxygen? I think I'm looking for something like how Ant defines vars for just about everything and these can be re-used; does Doxygen have special vars for any of the config values?

I'm thinking like $PROJECT-NAME or %VERSION% or whatever...

like image 830
Mr. Boy Avatar asked Jun 17 '10 10:06

Mr. Boy


People also ask

Are Doxygen commands case sensitive?

It is parsed by doxygen . The file may contain tabs and newlines for formatting purposes. The statements in the file are case-sensitive. Comments may be placed anywhere within the file (except within quotes). Comments begin with the # character and end at the end of the line.

How do I exclude a file in Doxygen?

How can I make doxygen ignore some code fragment? The new and easiest way is to add one comment block with a \cond command at the start and one comment block with a \endcond command at the end of the piece of code that should be ignored. This should be within the same file of course.


1 Answers

You can use environment variables in the configuration file; the syntax is the same as in a makefile, i.e. $(VAR_NAME)

like image 155
doxygen Avatar answered Oct 24 '22 05:10

doxygen