Palimpseste
Palimpseste

Reputation: 57

Documenting files without extension in Doxygen

I have some issues for doxygen to read files without extension. I defined these settings in my doxygen configuration file :

EXTENSION_MAPPING      = no_extension=FORTRAN
FILE_PATTERNS          =  *.no_extension

But Doxygen does not seem to consider them. (Doxygen will just read the files whose extension is ".no_entension"

Any help on this?

Also, I do not want to use symbolic link as proposed here: Parse files without extensions

Thank you

Upvotes: 1

Views: 1138

Answers (1)

skierpage
skierpage

Reputation: 2584

Your EXTENSION_MAPPING line looks right, but as albert commented, you can't give "no extension" as a FILE_PATTERNS. You have to list the files without extension that you want to process in INPUT.

Upvotes: 2

Related Questions