Commit d8c3b3f
committed
Don't convert CMake environment variables when using
When having environment CMake variables in the form of `${....}` and using `doxygen -x_noenv` we still can get warnings like:
```
warning: argument '${EIGEN_DOXY_INTERNAL}' for option INTERNAL_DOCS is not a valid boolean value
Using the default: NO!
```
whilst in this case these environment variables should not give a warning and remain in the resulting Doxyfile. These variables are normally resolved by CMake, but when creating one's own Doxyfile based on a CMake Doxyfile.in without running CMake they should not be touched and not be converted to the default value.
(Found when doing some tests with the Eigen package).-x_noenv option1 parent 688a5ad commit d8c3b3f
1 file changed
+3
-2
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1396 | 1396 | | |
1397 | 1397 | | |
1398 | 1398 | | |
1399 | | - | |
| 1399 | + | |
| 1400 | + | |
1400 | 1401 | | |
1401 | 1402 | | |
1402 | 1403 | | |
1403 | 1404 | | |
1404 | 1405 | | |
1405 | | - | |
| 1406 | + | |
1406 | 1407 | | |
1407 | 1408 | | |
1408 | 1409 | | |
| |||
0 commit comments