Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Apparently, some point in the Doxygen releases from 1.12.0 to 1.13.2, our documentation build started breaking. I've filed a bug report for the main issue here - a bug in predefined macro expansion, doxygen/doxygen#11393 - but it turns out we can get away with just disabling
EXPAND_ONLY_PREDEF
, which means the issue doesn't appear. It seems whatever reason there was to turn this on in the first place is no longer present, as the documentation builds fine without it enabled.Besides fixing the documentation build for 1.13.2 and updating the Doxygen version on CI, this PR also changes the way the
EXAMPLE_PATH
variable is set. Previously, we gave it the entire source tree as the example path, which led to every file in the directory (includingbuild
,node_modules
, and any other cruft) being parsed before the documentation could be generated. Apparently,EXCLUDE_PATTERNS
kicks in after this step in the process, so it had no effect. Instead, we glob everyCesium*
folder and add each of those to the path to avoid any extra build files from slowing down our doc build.