mirror of
https://github.com/overte-org/overte.git
synced 2025-08-08 11:37:58 +02:00
Remove Doxygen filter that is no longer needed
This commit is contained in:
parent
bd812e58aa
commit
2130dea965
3 changed files with 3 additions and 12 deletions
|
@ -1031,7 +1031,7 @@ IMAGE_PATH =
|
||||||
# need to set EXTENSION_MAPPING for the extension otherwise the files are not
|
# need to set EXTENSION_MAPPING for the extension otherwise the files are not
|
||||||
# properly processed by doxygen.
|
# properly processed by doxygen.
|
||||||
|
|
||||||
INPUT_FILTER = jsdoc-filter.pl
|
INPUT_FILTER =
|
||||||
|
|
||||||
# The FILTER_PATTERNS tag can be used to specify filters on a per file pattern
|
# The FILTER_PATTERNS tag can be used to specify filters on a per file pattern
|
||||||
# basis. Doxygen will compare the file name with each pattern and apply the
|
# basis. Doxygen will compare the file name with each pattern and apply the
|
||||||
|
|
|
@ -45,8 +45,8 @@ option in the "Wizard" tab of the Doxywizard program.
|
||||||
|
|
||||||
## Altering the Doxygen configuration
|
## Altering the Doxygen configuration
|
||||||
|
|
||||||
Most easily accomplished by using the Doxyfile GUI and using it to write a new `Libraries.Doxyfile` file.
|
This is most easily accomplished by using the Doxyfile GUI and using it to write a new `Doxyfile` file.
|
||||||
Alternatively, you can edit the `Libraries.Doxyfile` file in a text editor.
|
Alternatively, you can edit the `Doxyfile` configuration file in a text editor.
|
||||||
|
|
||||||
|
|
||||||
## References
|
## References
|
||||||
|
|
|
@ -1,9 +0,0 @@
|
||||||
# Filter out JSDoc comments by transforming them to ordinary comments.
|
|
||||||
# (JSDoc comments are used to generate the user API docs and don't produce suitable results for the C++ docs.)
|
|
||||||
while (<>) {
|
|
||||||
if (m/^\s*\/\*\*jsdoc/) {
|
|
||||||
print "\/*\n";
|
|
||||||
} else {
|
|
||||||
print;
|
|
||||||
}
|
|
||||||
}
|
|
Loading…
Reference in a new issue